使用指针变量对一字符串按照字母,空格、数字和其他字符进行分类统计( 提示:读一行字符包括空格用函数cin.getline(ch, 81) )。
#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main(void)
{
char line[81];
int word,space,digit,other;
while(cin.getline(line, 81))
{
char *p = line;
word = space = digit = other = 0;
while(*p!='\0')
{
if(isalpha(p[i]))
word++;
else if(isspace(p[i]))
space++;
else if(isdigit(p[i]))
digit++;
else
other++;
p++;
}
cout << "Words: " << word << endl;
cout << "Spaces: " << space << endl;
cout << "Digits: " << digit << endl;
cout << "Other charateristics: " << other << endl;
}
return 0;
}
本文介绍了一种使用指针变量对输入字符串按照字母、空格、数字和其他字符进行分类统计的方法,通过读取一行字符并利用C++标准库函数实现分类计数。
6072

被折叠的 条评论
为什么被折叠?



