ZZU的大白鹅


私信TA

用户名:dotcpp0703016

访问量:349

签 名:

等  级
排  名 29360
经  验 520
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校 郑州大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>

using namespace std;

int n;

bool o;

int y = 0;

bool sf(int x, int w)

{

int a, b, c, d, e, f;

a = x % 10;

b = (x / 10) % 10;

c = (x / 100) % 10;

d = (x / 1000) % 10;

e = (x / 10000) % 10;

f = (x / 100000) % 10;


if (x > 99999 && (a == f) && (b == e) && (c == d))

{

if ((a + b + c + d + e + f) == w)

{

y = 6;


return true;

}

}

if (x <= 99999 && (a == e) && (b == d))

{

if ((a + b + c + e + d) == w)

{

y = 6;


return true;

}

}


return false;


}

int main()

{

cin >> n;

for (int i = 10000; i <= 999999; i++)

{

o = sf(i, n);

if (o == 1)

{

cout << i << endl;

}

}

if (y!=6)

cout << -1 << endl;

return 0;




}


 

0.0分

1 人评分

  评论区

  • «
  • »