我寫了代碼來檢查輸入,我設置的HavePunct
標誌總是false
。但是,當我輸入hello,world!!
它將錯誤的結果返回給我。請讓我知道如果您看到我的代碼有任何問題:爲什麼我總是在我的代碼中得到「false」
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
int main() {
string s,result_s;
char ch;
bool HavePunct = false;
int sLen = s.size();
cout << "Enter a string:" << endl;
getline(cin, s);
//檢測字符串是否有符號
for (string::size_type i = 0;i != sLen; ++i) {
ch = s[i];
if (ispunct(ch)) {
HavePunct = true;
}
else
result_s += ch;
}
if (HavePunct) {
cout << "Result:" << result_s;
}
else {
cerr << "No punction in enter string!" << endl;
system("pause");
return -1;
}
system("pause");
return 0;
}
您是否嘗試過步進以爲他調試器了嗎? –
看看你在哪裏設置'sLen'。字符串是否已填充? – NathanOliver