下面的程序用变量count统计文件中小写字母的个数。 #include <stdio.h> #include <stdlib.h> int main(void) { FILE *fp; char a; int count=0; if((fp=fopen("d:\\letter.txt",【 】))==NULL) { printf("can not open file\n"); exit(0);} while(!feof(fp)) { 【 】


下面的程序用变量count统计文件中小写字母的个数。 #include <stdio.h> #include <stdlib.h> int main(void) { FILE *fp; char a; int count=0; if((fp=fopen("d:\\letter.txt",【 】))==NULL) { printf("can not open file\n"); exit(0);} while(!feof(fp)) { 【 】 if(【 】) count++; } fclose(fp); printf("字符个数是:%d\n",count); return 0; } 【】中应依次填入()。

A.”r” fscanf(fp,"%c",&a); a>='a' and a<='z'

B.”w” fscanf(fp,"%c",&a); a>='a' and a<='z'

C.”r” fscanf(fp,"%c",&a); a>='z' and a<='a'

D.”r” fscanf(fp,"%c",a); a>='a' and a<='z'

正确答案:A


Tag:C语言编程新思路 个数 变量 时间:2021-11-29 16:14:23