C程编程问题.计算用0-9这些数字可以组成多少个没有重复数字的三位偶数,按每行6个输出,最后将输出的数求和.

 我来答
fellowher
2010-10-27 · 超过19用户采纳过TA的回答
知道答主
回答量:26
采纳率:0%
帮助的人:0
展开全部
#include "stdio.h"
#include "stdlib.h"
void main()
{
int hundred,ten,one;
int sum=0;
int count=0;
for (int i=100;i<999;i++)
{
hundred=i/100;
ten=(i-hundred*100)/10;
one=i%10;

if ((hundred==ten)||(hundred==one)||(ten==one)||(one%2==1))
continue;
else
{
count+=1;
printf("%d %d %d ",hundred,ten,one);
if ((count%6)==0)
{
printf("\n");
}
sum=sum+i;
}
}
printf("SUM of this number is %d\n",sum);

}
hkd36
2010-10-27
知道答主
回答量:6
采纳率:0%
帮助的人:0
展开全部
#include<stdio.h>
#include<stdlib.h>
void main()
{
int hundred,ten,one;
int sum=0;
int count=0;
for (int i=100;i<999;i++)
{
hundred=i/100;
ten=(i-hundred*100)/10;
one=i%10;

if ((hundred==ten)||(hundred==one)||(ten==one)||(one%2==1))
continue;
else
{
count+=1;
printf("%d %d %d ",hundred,ten,one);
if ((count%6)==0)
{
printf("\n");
}
sum=sum+i;
}
}
printf("SUM of this number is %d\n",sum);
system("pause");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式