下列程序的功能是对输入的一行字符中的数字字符的字面值累加,输出此累加和,请填空。 #include<stdio.h> #include<ctype.h> main() { char c; int a,s=0; while( ______)

admin2010-05-22  25

问题 下列程序的功能是对输入的一行字符中的数字字符的字面值累加,输出此累加和,请填空。
#include<stdio.h>
#include<ctype.h>
main()
{   char c;
   int a,s=0;
   while( ______)
       if(isdigit(C) )
       {a=c-’0’;s+=a;}
   printf("s=%d",s);
}

选项

答案(c=getchar())!=’\n’

解析 分析题目可知,程序中运用函数c=getchar()从标准输入设备读取下一个字符,而且是一行的字符(即没有换行),所以条件为 (c=getchar())!=’\n’。
转载请注明原文地址:https://kaotiyun.com/show/ENWp777K
0

随机试题
最新回复(0)