efrei/programmation-c-cpp/tp2/tables-multiplication.c

18 lines
293 B
C
Raw Normal View History

2021-10-18 11:21:41 +02:00
/* Tables de multiplication */
#include <stdio.h>
#include <stdlib.h>
int main() {
int nombre;
printf("Quelle table faut-il afficher ? ");
scanf("%d", &nombre);
for (int i = 0; i <= 10; i++) {
printf("%d x %d = %d\n", nombre, i, nombre * i);
}
return 0;
}