Advertisement
hmcristovao

Lista 03 - exercício 26

May 11th, 2012
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. int main() {
  3.    int numero, i;
  4.    printf("Entre com o numero:");
  5.    scanf("%d", &numero);
  6.    for(i=1; i <= 10; i++) {
  7.       printf("%d x %d = %d \n", numero,i,i*numero);
  8.    }
  9.    return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement