编写c程序统计大小写字母的个数,并把大写字母反序输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写c程序统计大小写字母的个数,并把大写字母反序输出相关的知识,希望对你有一定的参考价值。
例如 asBerWZh
输出大写个数3,小写个数5
序列asZerWBh
int main()
char test[10] = "asZerWBh";
char A_Z[10];
int count = 0;//总字母个数
int Acount = 0;//大写字母个数
for(int i = 0; '\\0' != test[i]; i++)
if((test[i]>=65) && (test[i]<=90))//ASCII码值65到90为大写
A_Z[Acount] = test[i];
Acount++;
count++;
printf("原混合字母序列为:\\n");
printf("%s\\n",test);
printf("大写字母的逆序为:\\n");
for(int j =Acount-1; j >= 0 ; j--)
printf("%c",A_Z[j]);
printf("\\n字母序列的总数为:%d,其中大写字母的个数为:%d\\n",count,Acount);
return (0);
参考技术A #include <stdio.h>
#define NUM 100
void main ()
int l=0,L=0;
char a[NUM]="asBerWZh",*p;
p=a;
do
if (*p >='A' && *p<='Z')
L++;
else if (*p>='a' && *p<='z')
l++;
else continue;
while ( *p++!='\0');
printf ("大写字符%d个\n小写字符%d个\n",L,l);
以上是关于编写c程序统计大小写字母的个数,并把大写字母反序输出的主要内容,如果未能解决你的问题,请参考以下文章
C语言程序:编写程序,统计特定字母的个数。要求用指针编写。谢谢!!!