Java Tutorials Part 2 - Variables, Data Types etc.
** These Videos are meant to be watched in FULL screen on high-detail mode, so please do not complain that you cannot read it in the comments. Click high detail and go to full screen! **
http://youtube.com/watch?v=lDZ...
HIGH DETAIL LINK ^^
Source Code:
public class Tutorial2 {
public static void main(String[] args) {
int ourfirstnumber = 10;
double ourfirstdouble = 10;
String astring = "Hello Java";
String var = "This is a variable";
System.out.println(ourfirstnumber);
System.out.println(ourfirstdouble);
System.out.println(astring);
System.out.println(var + " Whatever");
}
}
Channel: Education Uploaded: November 30, 1999 at 12:00 am Author: JavaTutorials