yangzhixiaohuli 发表于 2023-11-30 21:05:27

统计各类字符数量并输出字母

1
统计各类字符数量并输出字母
(10分)
对于输入的一行字符,统计其中各类字符的数量,并将其中的字母大小写互换后输出。

输入格式:
在一行内输入各类字符(行末以换行符结束),字符总数不少于1个、不超过2000个。

输出格式:
输出为两行:

先按照输入的顺序,将其中的字母大小写互换后,在第一行输出,

再统计输入的各类字符数量,按照 letters:<l>, digits:<d>, spaces:<s>, others:<o>. 的格式在第二行输出。

注意

统计字符数量,不包含行末输入的换行符;
上述格式中<l> <d> <s> <o>分别表示字母、数字、空格、其它字符的数量,输出时以实际数量代替;
在第一行只输出大小写互换后的字母,不输出其它字符;
要严格按照规定格式输出,不能随意增减空格、换行等字符。
输入样例:
ABC xyz 123 ?!
输出样例:
abcXYZ
letters:6, digits:3, spaces:3, others:2.


我这样写哪里错了,为什么输出是空白

#include<iostream>
#include<cctype>
using namespace std;
int main()
{
        int a=0,b=0,c=0,d=0;
        char ch=getchar();

        while(ch!='\n')
        {
                if(isupper(ch))
                {
                        tolower(ch);
                        a++;
                }
                        else if(islower(ch))
                {
                        toupper(ch);
                        a++;
                }
                else if(isdigit(ch))
                {
                        b++;
                }
                else if(isspace(ch))
                {
                        c++;
                }
                else
                {
                        d++;
                }
        }
        cout<<a<<" "<<b<<" "<<c<<" "<<d<<endl;
}

FishC_GPT 发表于 2023-11-30 21:05:43

您的代码中有几个问题需要修正:

1. 代码中需要包含头文件iostream,而不是iostream。
2. 在使用isupper()和islower()函数时,需要将字符传递给这些函数,并将返回值保存到变量中。例如,可以使用isupper(ch)来检查字符ch是否为大写字母,并将结果保存到变量中。
3. 在使用tolower()和toupper()函数时,需要将字符传递给这些函数,并将返回值保存到变量中。例如,可以使用ch = tolower(ch)来将字符ch转换为小写字母,并将结果保存到变量中。
4. 在统计各个字符数量时,应该在每次符合条件的字符出现时,递增对应的变量。例如,应该在a++之前将字符转换为小写字母。

以下是修正后的代码:

#include <iostream>
#include <cctype>
using namespace std;

int main()
{
    int a=0,b=0,c=0,d=0;
    char ch=getchar();

    while(ch!='\n')
    {
      if(isupper(ch))
      {
            ch = tolower(ch);
            a++;
      }
      else if(islower(ch))
      {
            ch = toupper(ch);
            a++;
      }
      else if(isdigit(ch))
      {
            b++;
      }
      else if(isspace(ch))
      {
            c++;
      }
      else
      {
            d++;
      }
      cout << ch;
      ch = getchar();
    }

    cout << endl;
    cout << "letters:" << a << ", digits:" << b << ", spaces:" << c << ", others:" << d << ".";
    return 0;
}

希望可以帮助到您!

以上回复来自 -- ChatGPT(FishC官方接口),如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: 统计各类字符数量并输出字母