Subscribe For Free Updates!

We'll not spam mate! We promise.

Sunday 26 August 2012

C++ code to displaying cube of 1first ten numbers



// 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;
}

Socializer Widget By CodingLovers
SOCIALIZE IT →
FOLLOW US →
SHARE IT →

0 comments:

Post a Comment