View Single Post
Old Nov 5th, 2004, 7:24 AM   #7
kalinga1234
Programmer
 
Join Date: Oct 2004
Posts: 31
Rep Power: 0 kalinga1234 is on a distinguished road
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 is offline   Reply With Quote