如何从用户而不是示例中获取输入字符串,然后计算空格,标点符号,数字和字母。 C ++

时间:2017-10-11 16:15:26

标签: c++

这是我的代码。 用户将输入一个输入(任何字符串),而不是“这是一个测试.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;
}

1 个答案:

答案 0 :(得分:1)

您希望将std::getlinestd::cin结合使用,后者从标准C输入流中读取stdin

  • std::getline从输入流中读取字符并将它们放入字符串
  • std::cin是与stdin
  • 相关联的输入流

通常,您希望向用户输出提示:

std::cout << "Please enter your test input:\n";

然后您要创建std::string,并使用std::getlinestd::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