fork download
  1. #include "ctype.h"
  2. #include "iostream"
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. setlocale(LC_ALL, "Russian");
  8. char buk;
  9. int result1;
  10. cout<<"Введите букву: " << endl;
  11. cin>>buk;
  12. result1=islower(buk);
  13. cout<<"Буква: "<<result1 << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 5048KB
stdin
Z
stdout
Введите букву: 
Буква: 0