在考生文件夹下,要求程序PROG.C的功能是:
统计字符串中英文字母的个数并输出。
例如,当字符串为"This Is a c Program"
输出:Result is:15
#include
#include
fun(char str1[])
{
/***********begin***********/
int i=0,s=0; while(str1[i]!='\0') { if((str1[i]>='a' && str1[i]<='z') || (str1[i]>='A' && str1[i]<='Z')) s++; i++; } return s; |
/************end************/
}
void main()
{
void NONO( );//函数声明
char str1[80];
int n;
printf("Enter str1:\n");
gets(str1);
n=fun(str1);
printf("Result is: %d\n",n);
NONO( );
}
void NONO( )
{ FILE *fr,*fw;
int i;
char s[80];
fr=fopen("PROGIN.DAT","r");
fw=fopen("PROGOUT.DAT","w");
for(i=1;i<=5;i++)
{ fgets(s,80,fr);
fprintf(fw,"TheResultis:%d\n",fun(s));
}
fclose(fr);
fclose(fw);
}
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 | |
全国职称计算机考试速成过关系列套装:W .. 定价:¥133 优惠价:¥133.0 更多书籍 |