Answer to Question #22382 in C++ for Darryl kaye

Question #22382
Create a multiplication table using looping.
1
Expert's answer
2013-01-23T09:03:26-0500
#include <iostream>
using namespace std;

int i, j;

void main(){

for (i=1; i<11; i++){
for (j=1; j<11; j++)
cout<<i*j<<" ";
cout<<"\n";
}

system("pause");
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS