// Displaying cube of 1st ten numbers
// Programmer name: Sohail ahmed
// Date: 27/04/2010
#include<iostream.h>
#include<conio.h>
int main()
{
clrscr();
for(int count=1; count<=10; count++)
{
cout<<count<<". "<<count*count*count<<endl<<endl;
}
return 0;
}
0 comments:
Post a Comment