看板 C_and_CPP 關於我們 聯絡資訊
#include<iostream> #include<iomanip> #include<cmath> #include<cctype> using namespace std; int main() { cout<<"start"; cin.get(); char ch; cin.get(ch); while(ch!='@') { if(!isdigit(ch)) { if(isupper(ch)) cout<<tolower(ch); else if(islower(ch)) cout<<toupper(ch); else cout<<ch; } else cin.get(ch); } } 我希望能輸入隨意的字母 輸出"大小寫互換"且"數字無法讀入"的字母,直到按下'@'就會終止 不過這是我出現的結果 start xc xzcvzxc ZXDCVXZV @DCFVMC;X 8867 88906786908867 12212010099118120122118 結果輸出全變成數字了QQ 請問bug在哪呢? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.114.14.246
akasan:tolower, toupper回傳的是int 07/09 20:52
hyestt:那我該怎麼改才能變成字母 07/09 21:01
gozha:cout << (char)(tolower(ch)); 07/09 22:09