// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0
// bool, true, false
#include 

int main()
{
	bool passingGrade ;  // creates a boolean variable
	// a boolean variable can only have 2 values
	// either true (1) or false (0)

	int grade = 75 ;
	
	if(grade > 65)  // if the grade is over 65, they passed
		passingGrade = true ; // true could be substitued for 1
	else
		passingGrade = false ; // false could be substituted for 0

	if(passingGrade) // if passingGrade is true, they did a good job
		cout << "Good Job!" << endl ;
	else
		cout << "Try harder next time!" << endl ;


	return 0 ;
}

    Source: geocities.com/neonprimetime.geo/cpp/cpp_SourceCode

               ( geocities.com/neonprimetime.geo/cpp)                   ( geocities.com/neonprimetime.geo)