22 lines
508 B
C
22 lines
508 B
C
|
#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;
|
||
|
}
|