string s;
while (getline(cin, s)) {
s += '\n';
for(auto c:s){
if (c == ' ')
cout << "yeah!space." << endl;
if (c == '\t')
cout << "yeah!tab." << endl;
if (c == '\n')
cout << "yeah!newline." << endl;
}
}
我感覺可能有問題。
看樓主想要達到的目的是啥了
單步調試和設斷點調試(VS IDE中編譯連接通過以後,按F10或F11鍵單步執行,按Shift+F11退出當前函數;在某行按F9設斷點後按F5執行停在該斷點處。)是程序員必須掌握的技能之一。