mso-hansi-font-family:"Times New Roman"">下面程序的功能是计算 100 "Times New Roman"">到 1000 之间有多少个数其各位数字之和是 5 mso-hansi-font-family:"Times New Roman"">。请填空。 #include void main() { int i,s,k,count=0; for(i=100;i<=1000;i++) { s=0;k=i; while( mso-hansi-font-family:"Courier New"">【 1 "Courier New"">】 ) { s=s+k%10; k= mso-hansi-font-family:"Courier New"">【 2 "Courier New"">】 ; } if(s!=5) 【 3 "Courier New"">】 ; else count++; } printf("%d",count); }