Computer Science 121
Assignment 1: Due February 1, 1999
//Program to draw a box on the screen.
//CS 121, <student's name>
// <today's date>#include <iostream> //This includes input and output functions.
using namespace std;
int main ()
{ cout << "**********************************" << endl; cout << "* <Your e-mail address> *" << endl; cout << "* *" << endl; cout << "* <Your favorite web site > *" << endl;
cout << "* *" << endl; cout << "**********************************" << endl;
return 0; }