惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
博客园 - 聂微东
Application and Cybersecurity Blog
Application and Cybersecurity Blog
MyScale Blog
MyScale Blog
罗磊的独立博客
H
Help Net Security
L
LangChain Blog
T
Threat Research - Cisco Blogs
量子位
S
Securelist
Last Week in AI
Last Week in AI
L
Lohrmann on Cybersecurity
T
The Exploit Database - CXSecurity.com
P
Privacy International News Feed
The Hacker News
The Hacker News
Vercel News
Vercel News
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
T
Threatpost
Security Latest
Security Latest
P
Palo Alto Networks Blog
Microsoft Security Blog
Microsoft Security Blog
NISL@THU
NISL@THU
F
Full Disclosure
WordPress大学
WordPress大学
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Heimdal Security Blog
J
Java Code Geeks
Recorded Future
Recorded Future
Hugging Face - Blog
Hugging Face - Blog
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
B
Blog RSS Feed
月光博客
月光博客
C
Cisco Blogs
V
Visual Studio Blog
D
DataBreaches.Net
H
Hacker News: Front Page
博客园 - 叶小钗
N
News and Events Feed by Topic
爱范儿
爱范儿
A
Arctic Wolf

飞絮落叶雪 - 编程

我让 Ai 写了一个记账本 1011-空心六边形 1071 - 字符图形7-星号菱形 1140 - 亲密数对 1138 - 求无暇素数 1136 - 输出m和n范围内的完全数(完美数) 1089 - 找数字 1151-桐桐数
1149 - 回文数个数
Mr.He · 2024-06-20 · via 飞絮落叶雪 - 编程

1149 - 回文数个数.png

思路

  1. 根据题意定义一个判断函数;
  2. 遍历所有数字,如果是回文数计数器就加一;

知识点

  1. 函数的用法
  2. 将数字倒序排列和原数相比,如果相同就是回文数

代码实现

#include <iostream>
using namespace std;

//mrhe.net编写,引用需保留出处
//定义函数,判断是否回文数
bool huiwen(int x) {
    int i, n, num = 0;
    //将x存入n,因为n在下面要进行计算
    n = x;
    //假设不是
    bool flag = false;
    //根据题意小于10的数都是,其实这个if是多余的,只是便于新手理解.
    if(x < 10) {
        flag = true;
    } else {
        //将数字倒序
        while(n != 0) {
            num = num * 10 + n % 10;
            n = n / 10;
        }
        //如果倒序之后的数和原来的数相同就返回true
        if(x == num) {
            flag = true;
        }
    }
    return flag;
}

int main() {
    int n, i, c = 0;
    cin >> n;
    //遍历1-n的数字,如果是回文数计数器+1
    for(i = 1; i <= n; i++) {
        if(huiwen(i) == true) {
            c++;
        }
    }
    cout << c << endl;
    return 0;
}