C++ Primer(第5版) 练习 3.10
练习 3.10 编写一段程序,读入一个包含标点符号的字符串,将标点符号去除后输出字符串剩余的部分。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************
> File Name: ex3.10.cpp
> Author:
> Mail:
> Created Time: Wed 31 Jan 2024 08:46:49 AM CST
************************************************************************/
#include<iostream>
#include<cctype>
using namespace std;
int main(){
string str;
cout<<"Enter String: ";
getline(cin, str);
cout<<"New String: ";
for(auto c : str){
if(!ispunct(c)){
cout<<c;
}
}
cout<<endl;
return 0;
}