返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     string str;
  7.     cin >> str;
  8.     for(int i = 0; i < str.size(); i++){
  9.         if(str[i] < 'a'){
  10.             cout << char(str[i] + ' ');
  11.         } else {
  12.             cout << char(str[i] - ' ');
  13.         }
  14.     }
  15.     cout << endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

29 WPM
(words per minute)
Keystrokes        (143 | 0) 143
Accuracy        95.33%
Correct words        27
Wrong words        0

27 WPM
(words per minute)
Keystrokes        (137 | 0) 137
Accuracy        90.13%
Correct words        25
Wrong words        0

32 WPM
(words per minute)
Keystrokes        (158 | 0) 158
Accuracy        95.18%
Correct words        29
Wrong words        0

26 WPM
(words per minute)
Keystrokes        (130 | 0) 130
Accuracy        87.84%
Correct words        24
Wrong words        0

32 WPM
(words per minute)
Keystrokes        (161 | 0) 161
Accuracy        96.41%
Correct words        30
Wrong words        0

34 WPM
(words per minute)
Keystrokes        (170 | 0) 170
Accuracy        96.59%
Correct words        29
Wrong words        0

TOP

返回列表