Answer to Question #29502 in C++ for Chake
Write a c++ program which produce a simple multiplication table of the
following format for integers in the range 1 to 9
1*1=1
1*2=2
...
9*9=81
1
2013-04-30T08:46:44-0400
#include<iostream>
#include<stdio.h>
int main(){
for (int i=1; i<10; i++){
for (int j=1; j<10; j++){
printf("%d*%d=%d ", i, j, i*j);
}
printf("\n");
}
getchar();
return 0;
}
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!
Learn more about our help with Assignments:
C++
Comments
Leave a comment