fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5.  
  6. char x;
  7.  
  8. cin >> x;
  9.  
  10. if(x >= 'a' && x <= 'z')
  11. {
  12. cout<< "ALPHA" << endl << "IT'S SMALL";
  13. }
  14.  
  15. else if(x >= '0' && x <= '9')
  16. {
  17. cout << "IT'S DIGIT";
  18. }
  19. else
  20. {
  21. cout<< "ALPHA" << endl << "IT'S CAPITAL";
  22. }
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5436KB
stdin
Standard input is empty
stdout
ALPHA
IT'S CAPITAL