基于Cpp,编写一段程序,读入一个包含标点符号的字符串,将标点符号去除后输出字符串剩余的部分。
时间: 2023-05-12 15:03:59 浏览: 78
编写程序.cpp
当然可以,以下是代码示例:
```cpp
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
int main() {
string str;
getline(cin, str); // 读入包含标点符号的字符串
string result = "";
for (int i = 0; i < str.length(); i++) {
if (!ispunct(str[i])) { // 判断是否为标点符号
result += str[i]; // 如果不是,则加入结果字符串
}
}
cout << result << endl; // 输出去除标点符号后的字符串
return 0;
}
```
希望这个程序能够帮到你!
阅读全文