// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0
// assert
#include 
#include   // must include assert.h
					// to use assert

int main()
{
	double x ;
	cout << "Please enter a number greater than six!" << endl ;
	cin >> x ;

	// if the number entered in was not greater than six
	// the program would be terminated with an error message
	// if the number was greater than six then the program
	// continues and in this case Hi! is printed out
	assert(x > 6) ;

	cout << "Hi!" << endl ;

	
	return 0 ;
}

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

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