原题链接:蓝桥杯历届试题-回文数字
解题思路:
注意事项:
参考代码:
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <vector>
#include <algorithm>
#include <stdio.h>
#include <math.h>
#define N 500
using namespace std;
vector<int> A;
bool isInti(int n, int sum)
{
int a = 0, b = 0, c = 0, d = 0, e = 0, f = 0;
if (n/100000)//六位数
{
a = n / 100000;
b = n % 10;
c = n / 10000 % 10;
d = n / 10 % 10;
e = n / 1000 % 10;
f = n / 100 % 10;
if (!(a == b && c == d && e == f))//不回文
return false;
}
else//五位数
{
a = n / 10000;
b = n % 10;
c = n / 1000 % 10;
d = n / 10 % 10;
e = n / 100 % 10;
if (!(a == b && c == d))//不回文
return false;
}
//和为指定值
if (a + b + c + d + e + f == sum)
return true;
else
return false;
}
int main()
{
int sum = 0;
cin >> sum;
for (int i = 10000; i <= 999999; i++)
if (isInti(i, sum))
A.push_back(i);
if (A.size())
{
for (vector<int>::iterator it = A.begin(); it < A.end(); it++)
cout << *it << endl;
}
else
cout << -1;
return 0;
}0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复