31 lines
456 B
C
31 lines
456 B
C
|
/* Puissance */
|
||
|
|
||
|
// CECI EST NON FONCTIONNEL
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int is_a_number(int);
|
||
|
|
||
|
int main() {
|
||
|
int entree;
|
||
|
|
||
|
printf("Écrire un nombre : ");
|
||
|
scanf("%d", &entree);
|
||
|
|
||
|
if (is_a_number(entree)) {
|
||
|
printf("C'est un nombre\n");
|
||
|
} else {
|
||
|
printf("Ce n'est pas un nombre\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int is_a_number(int entree) {
|
||
|
if (entree == (char) entree) {
|
||
|
return 0;
|
||
|
}
|
||
|
return 1;
|
||
|
}
|