Thread
:
Want Some Nested Loops
View Single Post
Nov 5th, 2004, 7:24 AM
#
7
kalinga1234
Programmer
Join Date: Oct 2004
Posts: 31
Rep Power:
0
wait i will post the code..
#include<iostream.h>
int main()
{
int row=0,col=0;
for(row=1;row<5;row++)
{
for(col=1;col<5;col++)
{
cout<<row*col;
}
cout<<"\n";
}
return 0;
}
kalinga1234
View Public Profile
Find More Posts by kalinga1234