题目一:输入一行字符,分别统计其中英文字母、数字、空格和其他字符的个数。
#include<stdio.h>
int main()
{
char c;
int a = 0;//定义字母个数
int d = 0;//定义数字个数
int b = 0;//定义空格个数
int t = 0;//定义其他字符个数
while ((c=getchar()) != '\n')
{
if (c >= 'a' && c <= 'z' || c >= 'A' && c <='Z')//有bug 前提是小写字母和大写字母在字符集中必须连续(EBCDIC编码中小写字母不连续)
{
a++;
}
else if (c >= '0' && c <= '9')
{
d++;
}
else if (c == ' ')
{
b++;
}
else t++;
}
printf("字母个数为:%d\n数字个数为:%d\n空格个数为:%d\n其他字符个数为:%d\n", a, d, b, t);
return 0;
}
以下是调试结果:
库函数中islower用于检查字符是否为小写字母 头文件为ctype.h
//判断ch是否为小写字母字符,是返回true,不是返回false
bool IsLower(char ch)
{
return islower(ch);
}
总结:题目一中使用了while循环语句,并嵌套if条件语句,层次分明,注意不要漏条件。
题目二:求Sn=a+aa+aaa+…+aa…aaa的值,其中a是一个数字,n表示a的位数,由键盘输入,如2+22+222+2222+22222(此时n=5)
#include