Reginaldojs

exercicio 34,lista 3

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