14 lines
281 B
C
14 lines
281 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
int main(void) {
|
||
|
|
double r;
|
||
|
|
printf("Tapez un réel : ");
|
||
|
|
scanf("%lf",&r);
|
||
|
|
printf("%e\n",r);
|
||
|
|
getchar();
|
||
|
|
printf("Tapez un caractère : ");
|
||
|
|
char l=getchar();
|
||
|
|
printf("%c?\n%c?\n%c?\n%c?\n%c?\n",l,l,l,l,l);
|
||
|
|
return EXIT_SUCCESS;
|
||
|
|
}
|