mirror of
https://codeberg.org/DansLeRuSH/c-plus-plus-exercises.git
synced 2024-11-23 11:48:08 +00:00
Delete EX02_conversion_entier.cpp
This commit is contained in:
parent
bac9c8cf86
commit
5ce3e38153
1 changed files with 0 additions and 13 deletions
|
@ -1,13 +0,0 @@
|
||||||
//Auteur : Franck ALBARET
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int main (void)
|
|
||||||
{
|
|
||||||
int Entier;
|
|
||||||
puts ("Entrer un entier :");
|
|
||||||
scanf ("%i",&Entier);
|
|
||||||
printf("L'écriture décimale de l'entier est %i\n",Entier);
|
|
||||||
printf("L'écriture octale de l'entier est %o\n",Entier);
|
|
||||||
printf("L'écriture hexadécimale de l'entier est %x\n",Entier);
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in a new issue