Guest User

Untitled

a guest
May 24th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. int main()
  4. {
  5. int i,j;
  6. for(i=1;i<=9; i++\n)
  7. {
  8. for(j=1; j<=9; j=j+3)
  9. {
  10. printf("%d * %d = %2d", j, i, j*i);
  11. }
  12. }
  13.  
  14. system("PAUSE");
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment