急救!!!求满足下面条件的所有四位数abcd的个数,该四位数是18的倍数,且c等于7,a加b等于C

2024-11-01 10:22:49
推荐回答(3个)
回答(1):

回答(2):

非常时期,靠自己

回答(3):

1872
2772
3672
4572
5472
6372
7272
8172
9072
代码跑出来的
代码如下:
#include
#include
#include
using std::endl;
using std::ofstream;
using std::cin;
using std::endl;
using std::cout;
int main()
{
int a,b,c,d,k;
ofstream ofs("d:\\a.txt");
c=7;

for(a=0;a<10;a++)
{
for(b=0;b<10;b++)
{
for(d=0;d<10;d++)
{
k=a*1000+b*100+c*10+d;
if(k%18==0&&a+b==c+d)
{
ofs< }
}
}
}
return 0;
}