fork download
  1. #include <iostream>
  2. #include <algorithm>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7.  
  8. int main()
  9. {
  10. string str = "bhjbHBjhbHJGBjbHB";
  11. transform(str.begin(),str.end(),str.begin(),::toupper);
  12. cout << str;
  13. }
  14.  
  15.  
Success #stdin #stdout 0s 4496KB
stdin
Standard input is empty
stdout
BHJBHBJHBHJGBJBHB