17 lines
293 B
C
17 lines
293 B
C
/* 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;
|
|
}
|