问题标题: 1079

0
0
已解决
颜咏春
颜咏春
中级光能
中级光能
#include<iostream> 
   #include<cstring>
   #include<string>
   using namespace std;
   int main()
    {
    char a[235]; int b=0,c=0;
    gets(a);
    for(int i=0;i<strlen(a);i++)
    {
        if(a[i]>='a'&&a[i]<='z')
            c++;
        else if(a[i]>='A'&&a[i]<='Z')
            b++;   
    }
    cout<<b<<" "<<c;    
    }

我怎么错了?


0
已采纳
朱宗晔
朱宗晔
初级光能
初级光能

你少了头文件

#include <cstdio>

 

0
马佳滢
马佳滢
新手天翼
新手天翼

加上头文件:

#include <cstdio>
0
我要回答