Advertisement
Alfoli

??

Sep 1st, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. main(){
  4.        int i, resul, t;
  5.        for (i=0;i<=10;i++){
  6.            for (t=1;t<=10;t++){
  7.                resul = t * i;
  8.                printf("\n%d x %d = %d", t, i, resul);
  9.            }
  10.            getchar();  
  11.        }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement