a
This commit is contained in:
14
APL1.1/1.Saisie/source/SaisieDouble.c
Normal file
14
APL1.1/1.Saisie/source/SaisieDouble.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include<stdlib.h>
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void){
|
||||
|
||||
int entier1 = 1234, entier2 = 1234;
|
||||
printf("Entrez le premier entier :");
|
||||
scanf("%d",&entier1);
|
||||
printf("Entrez le deuxieme entier :");
|
||||
scanf("%d",&entier2);
|
||||
printf("Le premier entier tapé est : %d, le second est : %d\n", entier1,entier2);
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Reference in New Issue
Block a user