这是我的代码。 用户将输入一个输入(任何字符串),而不是“这是一个测试.1 2 3 4 5”。
然后它将显示空格数,标点符号,数字和字母作为输出字符串。
#include <iostream>
#include <cctype>
using namespace std;
int main() {
const char *str = "This is a test. 1 2 3 4 5";
int letters = 0, spaces = 0, punct = 0, digits = 0;
cout << str << endl;
while(*str) {
if(isalpha(*str))
++letters;
else if(isspace(*str))
++spaces;
else if(ispunct(*str))
++punct;
else if(isdigit(*str))
++digits;
++str;
}
cout << "Letters: " << letters << endl;
cout << "Digits: " << digits << endl;
cout << "Spaces: " << spaces << endl;
cout << "Punctuation: " << punct << endl;
return 0;
}
答案 0 :(得分:1)
您希望将std::getline
与std::cin
结合使用,后者从标准C输入流中读取stdin
std::getline
从输入流中读取字符并将它们放入字符串std::cin
是与stdin
通常,您希望向用户输出提示:
std::cout << "Please enter your test input:\n";
然后您要创建std::string
,并使用std::getline
和std::cin
将用户的输入存储到该字符串中:
std::string input;
std::getline(std::cin, input);
此时,程序将阻止,直到用户输入输入,然后按Enter键。
一旦用户按下回车键,std::getline
将返回,您可以使用字符串的内容执行任何操作
示例:强>
#include <iostream>
#include <cctype>
using namespace std;
int main()
{
std::cout << "Enter the test input:\n";
std::string input;
std::getline(std::cin, input);
const char *str = input.c_str();
int letters = 0, spaces = 0, punct = 0, digits = 0;
cout << str << endl;
while(*str) {
if(isalpha(*str))
++letters;
else if(isspace(*str))
++spaces;
else if(ispunct(*str))
++punct;
else if(isdigit(*str))
++digits;
++str;
}
cout << "Letters: " << letters << endl;
cout << "Digits: " << digits << endl;
cout << "Spaces: " << spaces << endl;
cout << "Punctuation: " << punct << endl;
return 0;
}
<强>输出:强>
$ ./a.out
Enter the test input:
This is a test 1 2 3 4
This is a test 1 2 3 4
Letters: 11
Digits: 4
Spaces: 7
Punctuation: 0