码迷,mamicode.com
首页 > 其他好文 > 详细

蓝桥基础练习 回文数 BASIC-8

时间:2020-03-15 18:45:47      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:code   ble   math   基础   fine   inf   回文数   class   algo   

问题描述

  1221是一个非常特殊的数,它从左边读和从右边读是一样的,编程求所有这样的四位十进制数。

输出格式

  按从小到大的顺序输出满足条件的四位十进制数。
#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
#include <vector>
#include <cmath>
#include <queue>
#include <deque>
#include <cmath>
#include <map>

using namespace std;
typedef long long ll;

#define INF 0x7fffffff
const double inf=1e20;
const int maxn=100000+10;
const int mod=1e9+7;
const double pi=acos(-1);

int main(){
    for(int i=10;i<100;i++){
        int num=i/10+i%10;
        printf("%d%d%d\n",i,i%10,i/10);
    }
    return 0;
}

 

蓝桥基础练习 回文数 BASIC-8

标签:code   ble   math   基础   fine   inf   回文数   class   algo   

原文地址:https://www.cnblogs.com/wz-archer/p/12499044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!