Learn to Program with Java version 11 - Part 04 : Write Java data types #getajobinit

3 years ago
61

Learn to Program with Java version 11 - Part 04 : Write Java data types
https://github.com/garymcneelyit/javacourse

class DataTypes
{
public static void main ( String[] args )
{ char letter = 'M' ;
String title = "data types video 4 u" ;
int number = 365 ;
float decimal = 32.0f;
boolean result = true;

System.out.println( "Initial is " + letter );
System.out.println( "Book is " + title );
System.out.println( "days are " + number );
System.out.println( "temperature is " + decimal );
System.out.println( "answer is " + result );

}

}

Loading comments...