• Lenguaje

    C

  • Descripción

    Pide un número entero y muestra su tabla de multiplicar del 1 al 10

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int i, numero, resultado;
    printf ("Ingrese un n\243mero: ");
    scanf ("%d", &numero);
    putchar ('\n');
    for (i=1; i<=10; i++)
    {
        resultado = i * numero;
        printf ("%d \236 %d = %d\n", numero, i, resultado);
    }
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}