// i'll just introduce you to a few common
// VARIABLE TYPES
//Author: Justin C. Miller 

int main()
{
	int a = 5 ;  // int holds any whole number (no decimals)
	float b = 4.5 ; // floatholds decimal numbers with only 1 or 2
				   // numbers after the decimal point
	double c = 6.7880 ; // double is used for decimal numbers that
						// start to get long

	char d = 'y' ; // char holds 1 letter!!!! just one!!!!
					// and it must be defined with single
					// quotes around it

	string e = "Hello World" ; // string holds entire words
						// or sentences, whatever!

	bool f = true ;   // bool holds one of two values
	bool g = false ;  // either true (1) or false (0)

	return 0 ;
}