/**
 * Data Types
 * 
 * @author neonprimetime, neo, "the one" 
 * @website http://www.geocities.com/neonprimetime.geo/
 * 
 */


public class DataTypes{
	public static void main(String[] args){
		// this is an integer variable
		// you use 'int' to create one
		// it takes integer numbers
		// such as 5, 100, 277 (no decimal points)
		int integer_variable = 5 ;

		// this is a character variable
		// you use 'char' to create one
		// it takes single letters or symbols
		// such as 'x', 'y', '!', '&' 
		char character_variable = 'x' ;
			
		// this is a double precision float variable
		// you use 'dobule' to create one
		// it takes numbers with decimal points
		// that need to be very accurate
		// such as 3.1419191, -9.1231231213
		double double_variable = 67.412312321 ;

		// this is a single precision float variable
		// you use 'float' to create one
		// it takes numbers with decimal points
		// that don't need to be as accurate as doubles
		// such as 10.2, 11.55	
		float float_variable = 7.5 ;

		// this is a boolean variable
		// you use 'boolean' to create one
		// it can have one of two values
		// either 'true' or 'false'
		boolean boolean_variable1 = true ;
		boolean boolean_variable2 = false; 

		// this is a string object
		// you use 'String' (capitalized) to create one
		// it can have anything inside the 2 quotes
		// such as "123 ABC", "Hello World!"
		String string_variable = "This is a String!" ;
	}//end of 'main' method
}// end of 'DataTypes' class