10 lines
247 B
C
10 lines
247 B
C
|
#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;
|
||
|
}
|