14 lines
289 B
C
14 lines
289 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void){
|
|
double n=0;
|
|
printf("saisir un reel: ");
|
|
scanf("%lf",&n);
|
|
printf("%.10e \n",n);
|
|
char lettre;
|
|
printf("saisir un charactere: ");
|
|
lettre = getchar();
|
|
lettre = getchar();
|
|
printf("%c%c%c%c%c",lettre,lettre,lettre,lettre,lettre);
|
|
} |