fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char alph;
  5. scanf("%c", &alph);
  6. if(alph>=65 && alph<=90) {
  7. printf("%c is gross", alph);
  8. }
  9. else if (alph>=97 && alph<=122){
  10. printf("%c is klein", alph);
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9416KB
stdin
A
stdout
A is gross