DEV/ControleMachine1/Exo4.c

22 lines
508 B
C
Raw Normal View History

2022-10-26 16:46:01 +02:00
#include <stdio.h>
#include <stdlib.h>
int main (void){
char c;
int x;
printf("Veuillez saisir un charactere: ");
scanf("%c", &c);
x=c; //On donne à x la position du charactere contenu dans c dans la table ASCII
if (65<=x && x<=90){
printf("Votre charactere '%c' est une majuscule.\n",c);
} else {
if (97<=x && x<=122){
printf("Votre charactere '%c' est une minuscule.\n",c);
} else {
if (48<=x && x<=57){
printf("Votre charactere '%c' est un chiffre.\n",c);
}
}
}
return 0;
}