Files
APL1.1
CM1
CM2
CMB1
SAE11_2021
TP01
TP02
TP03
TP04
TP05
date_age.c
entier.c
entier_double.c
hexa_to_decimal.c
TP06
TP07
TP08
TP09
TP10
TP11
TP12
TP13
TP14
TP15
TP16
TP17
controle_machine
APL1.2
APL2.1
DEV 2.2
DEV 2.3
DEV 3.1
DEV 3.2
DEV 3.4
DEV 4.4
DEV-4.5
Fun
HTML
Révisions
graphsup
.gitignore
README.md
APL/APL1.1/TP05/entier_double.c

16 lines
320 B
C
Raw Normal View History

2021-09-20 17:22:39 +02:00
#include<stdio.h>
#include<stdlib.h>
int main(int argc, char * argv[]) {
int entier1 = 1234;
int entier2 = 5678;
printf("Entrez un entier :");
scanf("%d", &entier1);
printf("Entrez un deuxieme entier :");
scanf("%d", &entier2);
printf("Vous avez tapé : %d et %d\n", entier1, entier2);
return EXIT_SUCCESS;
}