Answer on Question#37576 - Programming, C++
36912
481216
5101520
plz solve this program
Solution.
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
for(int i=3; i<6; i++)
{
for(int j=1; j<5; j++)
{
cout<<i*j<<" ";
}
cout<<endl;
}
system("pause");
return 0;
}

Comments