CL0419 发表于 2013-11-5 23:11:24

该怎么写?跪求各位大神的不同答案……

编写程序实现:从键盘输入若干字符,直到按下Enter(换行)键时结束,统计并输出英文字符(包括大写和小写,不包括最后按下的Enter键)的个数(分别使用while语句和do......while语句实现循环)。

龙羽 发表于 2013-11-6 16:00:15

本帖最后由 龙羽 于 2013-11-6 16:51 编辑

//用for实现的,自己改dw吧,应该不难
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
#include <cctype>

using namespace std;
int main()
{
      vector<string> v;
      string s;
      getline(cin, s);
      istringstream huiche(s);
      int i=0;
      while(huiche>>s)
      {

                v.push_back(s);

      }
      for(vector<string>::iterator d=v.begin();d!=v.end();++d)
      {
                for(string::size_type c=0;c!=(*d).size();++c)
                {
                        if(isalpha((*d)))
                        i++;
                }
                cout<<*d<<"";

      }
      cout<<endl<<i<<endl;

      return 0;
}
页: [1]
查看完整版本: 该怎么写?跪求各位大神的不同答案……