DEV/ControleMachine1/Exo1.c

10 lines
247 B
C
Raw Normal View History

2022-10-26 16:46:01 +02:00
#include <stdio.h>
#include <stdlib.h>
int main (void){
int x=2022;
printf("La notation de 2022 en decimal est: %d\n",x);
printf("La notation de 2022 en decimal est: %o\n",x);
printf("La notation de 2022 en decimal est: %x\n",x);
return 0;
}