Advertisement
hmcristovao

Lista 03 - exercício 34

May 11th, 2012
273
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. int main() {
  3.    int numero, i;
  4.    for(numero=1; numero <= 10; numero++) {
  5.       printf("\nA tabuada do numero %d eh: \n",numero);
  6.       for(i=1; i <= 10; i++) {
  7.          printf("%d x %d = %d \n", numero,i,i*numero);
  8.       }
  9.    }
  10.    return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement