21 lines
382 B
C
21 lines
382 B
C
|
#include<stdlib.h>
|
||
|
#include<stdio.h>
|
||
|
|
||
|
int main(void){
|
||
|
|
||
|
int reponse,compteur;
|
||
|
|
||
|
printf("Tables\n---------\nEntrez un entier, sa table sera afficher.\nVotre entier : ");
|
||
|
scanf("%d",&reponse);
|
||
|
|
||
|
if (reponse!=-1){
|
||
|
for(compteur=0;compteur<=10;compteur++){
|
||
|
printf("%3dx%3d =%3d\n",reponse,compteur,reponse*compteur);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
printf("\nAurevoir\n");
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|