C语言程序问题,求高手解答,现在急需要,马上就要交作业了~~!!
在1000~9999之间由四个不同的数字组成,而且个位数和千位数的差(以大减小)是2,这样的整数共有多少?...
在1000~9999之间由四个不同的数字组成,而且个位数和千位数的差(以大减小)是2,这样的整数共有多少?
展开
2个回答
展开全部
#include "stdio.h"
void main()
{ int i=1000,sum=0;
for(;i<9999;i++)
{
int a=i%10; //个位
int ten=(i%100-a)/10; //十位
int hundred=(i%1000-a-ten*10)/100; //百位
int thousand=(i-a-ten*10-hundred*100)/1000; //个位
if(a!=ten&&a!=hundred&&a!=thousand&&ten!=hundred&&ten!=thousand&&hundred!=thousand)
{
if(a-thousand==2||a-thousand==-2)
{
sum++;
}
}
}
printf("这样的数有%d个",sum);
}
void main()
{ int i=1000,sum=0;
for(;i<9999;i++)
{
int a=i%10; //个位
int ten=(i%100-a)/10; //十位
int hundred=(i%1000-a-ten*10)/100; //百位
int thousand=(i-a-ten*10-hundred*100)/1000; //个位
if(a!=ten&&a!=hundred&&a!=thousand&&ten!=hundred&&ten!=thousand&&hundred!=thousand)
{
if(a-thousand==2||a-thousand==-2)
{
sum++;
}
}
}
printf("这样的数有%d个",sum);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询