题目内容
程序填空题:计算 100~1000 之间有多少个数,其中各位数字之和为 5。#include void main(){int i,s,k,count=0;for (i=100;i<=1000;i++){s=0;k=i;while (k){s=s+k%10;k=k/10;}if (s!=5) _________________ ;else count++;}printf("count=%d\n" ,count);}
查看答案
搜索结果不匹配?点我反馈
更多问题