fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6.  
  7. int male, duze;
  8. string slowo;
  9. cin >> slowo;
  10. male=0;
  11. duze=0;
  12.  
  13. for(int i=0;i<slowo.length();i++)
  14.  
  15. if(slowo[i]<='Z')
  16. ++duze;
  17. else if(slowo[i]>='A')
  18. ++male;
  19.  
  20.  
  21. if(duze>male) {
  22. for(int i=0;i<slowo.length();i++)
  23.  
  24. if(int (slowo[i])>=97)
  25. slowo[i]=slowo[i]-32;
  26. }
  27. else
  28. {
  29. for(int i=0;i<slowo.length();i++)
  30. if(int (slowo[i])<=90)
  31. slowo[i]=slowo[i]+32;
  32. }
  33.  
  34.  
  35.  
  36. cout<<slowo;
  37.  
  38.  
  39.  
  40. return 0;
  41. }
Success #stdin #stdout 0.01s 5476KB
stdin
aaaaAaAAAAAAAAAAAAA
stdout
AAAAAAAAAAAAAAAAAAA