Saturday, March 26, 2011

ASSIGNMENT 2 (SIFIR LOOP)

#include
int main ( )
{
cout << " \t\t\t SIFIR " ,<< endl << " " << endl;
for (int c=1; c<13; c++)
for (int i=1; i<13; i++)
{
cout ,<< i * c << '\t';
}
cout << endl;
return O;
}

No comments:

Post a Comment