当前位置: 代码迷 >> 综合 >> 【Week2 -5】各位上的数字之和为5
  详细解决方案

【Week2 -5】各位上的数字之和为5

热度:14   发布时间:2023-12-06 07:38:12.0

【问题背景】

C语言程序设计慕课版第二版第四章第六题

【问题题目】

输出100至1000之内各位上的数字之和为5的数,五个为一排。

【代码呈上】

#include <stdio.h>
int main()
{int a,j,k,m,count=0;for(a=100;a<1000;a++){j=a/100;k=(a-100*j)/10;m= (a-100*j)%10;if(j+k+m==5){printf("%d ",a);count++;if(count%5==0)printf("\n");}}return 0;
}