Answer to Question #38715 in C++ for RAJU BORA

Question #38715
Write a program to print all the multiplication tables from 11 to 20 up to first 10 multiples of each.
1
Expert's answer
2014-01-28T10:35:17-0500
#include <stdio.h>int main () { int answer,k; int counter = 11; for ( k = 10; k < 20; k++ ) { printf("%d ", k); } printf("%d
", k); for (int i = 11; i <= 20; i++, counter ++ ) { printf("%d ",counter); for (int j = 11; j <= 20; j++ ){ answer = j * i; printf ("%d ", answer); } printf ("
"); } 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!

Comments

Assignment Expert
28.01.14, 19:58

Dear raju, You're welcome. If you liked our service please press like-button beside answer field. Thank you!

raju
28.01.14, 18:27

thank you sir

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS