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

BASIC-8 回文数

时间:2020-04-15 18:33:59      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:pre   cos   turn   git   type   dig   double   long   get   

  • 1、4位相等且2、3位相等即满足条件
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<int,int> P;
const int N=35;
const double PI=acos(-1);
#define line ‘\n‘
#define gt getchar()
#define mid ((L+R)>>1)
int read(){int x=0,op=1;char c=gt;while(!isdigit(c)){if(c==‘-‘)op=-1;c=gt;}while(isdigit(c))x=x*10+c-48,c=gt;return x*op;}
int main()
{
	for(int i=1000;i<=9999;++i)
		if((i/1000==i%10)&&(i%1000/100==i%100/10))cout<<i<<line;
	return 0;
}

BASIC-8 回文数

标签:pre   cos   turn   git   type   dig   double   long   get   

原文地址:https://www.cnblogs.com/ZeroOne-World/p/12706751.html

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