首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 计算机考试 > 软件考试 > 复习指导 >

二级考试C基础

2009-01-01 
消除标点符号

    编一个程序,从string 对象中去掉标点符号。要求输入到程序的字符串必须含有标点符号,输出结果则是去掉标点符号后的string 对象。

  消除标点

  #include

  #include

  #include

  using namespace std;

  int main()

  {

  string s, result_str;

  bool has_punct = false;  //用于标记字符串中有无标点

  char ch;      //输入字符串

  cout << "Enter a string:" << endl;

  getline(cin, s);    //处理字符串:去掉其中的标点

  for (string::size_type index = 0; index != s.size(); ++index)

  {

  ch = s[index];

  if (ispunct(ch))

  has_punct = true;

  else

  result_str += ch;

  }

  if (has_punct)

  cout << "Result:" << endl << result_str <

  else

  {

  cout << "No punctuation character in the string?!" << endl;

  return -1;

  }

  return 0;

  }

 


3COME考试频道为您精心整理,希望对您有所帮助,更多信息在http://www.reader8.com/exam/

热点排行