Feb 14, 2005 10:59
//========================================================
// Name: Jaclyn Gillespie
// KUID: 2012460
// Section: 11:30 am
// Instructor: Tony-Baby
//========================================================
// Program Summary
// ---------------
//
// This program produces Ascii Art as the output.
// It displays a previously created elephant image onto the screen.
//
// Special features:
// cout statements, insertion operator, and the escape character
// Written by: Jackie Gillespie
#include
using namespace std;
int main()
{
// start of program
cout << " / \\~~~/ \\ " << endl;
// cout sends data in quations to the monitor
// cout uses (<<) the insertion operator
cout << " ,----( .. ) " << endl;
// endl skips to next line
cout << " / \\__ __/ \n";
// escape sequence: (\n) skips to next line
cout << " /| (\\ |(\n";
cout << " ^ \\ /___\\ /\\ | hjw\n";
// double backslash are required to print single backslash
cout << " |__| |__|-\" `97";
// (\") single backslash is required before quotation to print quoation
return 0;
}
// end of program