【答案】下面的程序用变量count统计文件中小写字母的个数。 #include <stdio.h> #include

返回首页智慧树时间:2022-11-15 19:19
题目 / 答案提交正确答案

下面的程序用变量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 "); exit(0);} while(!feof(fp)) { 【 】 if(【 】) count++; } fclose(fp); printf("字符个数是:%d ",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

本文链接:https://www.oyuuu.com/Ti/ZhiHuiShu/352872.html

关键字  浏览量:
上一篇:智慧树知到《免疫与健康(哈尔滨师范大学)》章节测试答案
下一篇:fread(buf,64,2,fp)函数的功能是()。
相关问题