Thread: Assignments
View Single Post
Old 03-03-2005, 03:44 AM   #7
YMIHere
Newbie

 
Join Date: Oct 2004
Location: ,
Posts: 7
Default

My teacher had us make designs in text without actually typing it out. Try to make something like this:

Code:
* * * * *
 ** * * *
 * * * *
 * ** *
 * * *
Without typing it out directly.

Example:
Code:
for( var/i=5; i>=0; i-- );
{
 *printf("*");
}
This should print out five astericks (if I remembered how to use C anyway). =P
YMIHere is offline                         Send a private message to YMIHere
Reply With Quote