PTA乙级(1079 延迟的回文数 (20分))

1079 延迟的回文数 (20分)

https://pintia.cn/problem-sets/994805260223102976/problems/994805261754023936

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <string>
 4 #include <iostream>
 5 #include <algorithm>
 6 #include <cmath>
 7 #include <cstdlib>
 8 using namespace std;
 9 bool ispalindrome(string a);
10 string add(string b,string c);
11 int main()
12 {
13     string a,b,c;
14     bool flag=false;
15     cin>>a;
16     if(ispalindrome(a)) {cout<<a<<" is a palindromic number.\n"; return 0;}
17     int cnt=10;
18     while(cnt>0)
19     {
20         b=a;
21         reverse(b.begin(),b.end());
22         c=add(a,b);
23         cout<<a<<" + "<<b<<" = "<<c<<endl;
24         if(ispalindrome(c)) {cout<<c<<" is a palindromic number.\n"; flag=true; break;}
25         a=c;
26         cnt--;
27     }
28     if(!flag) cout<<"Not found in 10 iterations.\n";
29     return 0;
30 }
31 bool ispalindrome(string a)
32 {
33     int len=a.size();
34     for(int i=0;i<len/2;i++)
35     {
36         if(a[i]!=a[len-1-i]) return 0;
37     }
38     return 1;
39 }
40 string add(string a,string b)
41 {
42     string d;
43     int adv=0,bac=0;
44     int len=a.size();
45     for(int i=len-1;i>=0;i--)
46     {
47         bac=(a[i]-‘0‘)+(b[i]-‘0‘);
48         d+=(bac+adv)%10+‘0‘;
49         adv=(bac+adv)/10;
50     }
51     if(adv) d+=(adv)+‘0‘;
52     reverse(d.begin(),d.end());
53     return d;
54 }

原文地址:https://www.cnblogs.com/jianqiao123/p/12203316.html

时间: 2024-10-04 08:21:09

PTA乙级(1079 延迟的回文数 (20分))的相关文章

PAT 1079. 延迟的回文数

PAT 1079. 延迟的回文数 给定一个 k+1 位的正整数 N,写成 ak...a1a0 的形式,其中对所有 i 有 0 <= ai < 10 且 ak > 0.N 被称为一个回文数,当且仅当对所有 i 有 ai = ak-i.零也被定义为一个回文数. 非回文数也可以通过一系列操作变出回文数.首先将该数字逆转,再将逆转数与该数相加,如果和还不是一个回文数,就重复这个逆转再相加的操作,直到一个回文数出现.如果一个非回文数可以变出回文数,就称这个数为延迟的回文数.(定义翻译自 https

1079 延迟的回文数 (20 分)

#include <bits/stdc++.h> using namespace std; #define ll long long string turn(string s) { reverse(s.begin(),s.end()); return s; } string add(string a,string b) { string c = a; int m = 0; for(int i = a.size()-1;i>=0;i--) { c[i] = (a[i]-'0'+b[i]-'

PTA乙级 (1049 数列的片段和 (20分))

1049 数列的片段和 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805275792359424 第一次提交: 代码: #include <cstdio> #include <iostream> #include <cstring> #include <string> #include <cmath> #include <algorithm>

B1079 延迟的回文

给定一个 k+1 位的正整数 N,写成 a?k???a?1??a?0?? 的形式,其中对所有 i 有 0 且 a?k??>0.N 被称为一个回文数,当且仅当对所有 i 有 a?i??=a?k−i??.零也被定义为一个回文数. 非回文数也可以通过一系列操作变出回文数.首先将该数字逆转,再将逆转数与该数相加,如果和还不是一个回文数,就重复这个逆转再相加的操作,直到一个回文数出现.如果一个非回文数可以变出回文数,就称这个数为延迟的回文数.(定义翻译自 https://en.wikipedia.org/

shu_1180 回文数(一)

http://202.121.199.212/JudgeOnline/problem.php?cid=1079&pid=21 分析: 回文串判断,字符串处理 1. atoi 函数(ascii tointeger 将字符串转换成整型数) 头文件: #include <stdlib.h> int atoi(const char *nptr): 由于程序中使用string类,所以应该用 str.c_str() 将string转为c语言下的字符串数组. 2. itoa函数(与atoi功能相反)

判断一个数是否为回文数

#include <stdio.h> int is_palindromic(int num) {  char _old = num;  char _new = 0;  while (num)  {   _new = _new * 10 + (num % 10);   num = num / 10;  }  if (_new == _old)  {   return 1;  }  else  {   return 0;  } } int main() {  int num = 0;  scanf

LeetCode 9 Palindrome Number (回文数)

翻译 确定一个整数是否是回文数.不能使用额外的空间. 一些提示: 负数能不能是回文数呢?(比如,-1) 如果你想将整数转换成字符串,但要注意限制使用额外的空间. 你也可以考虑翻转一个整数. 然而,如果你已经解决了问题"翻转整数(译者注:LeetCode 第七题), 那么你应该知道翻转的整数可能会造成溢出. 你将如何处理这种情况? 这是一个解决该问题更通用的方法. 原文 Determine whether an integer is a palindrome. Do this without ex

要求循环输入一个数,判断是否为回文数

import java.util.Scanner; public class HuiWenShu { public static void main(String[] args) { Scanner input = new Scanner(System.in); char c = 'y'; //初始化c为y,为下面的循环做好准备 while(c == 'y'){ while(c == 'y'){ System.out.println("请随意输入一个大于三位的奇位数"); //回文数属

回文数 第N个回文数

判断回文数还是不难,如果能转为字符串就更简单了. 如果是求第N个回文数呢. 12321是一个回文数,这里先考虑一半的情况. 回文数的个数其实是有规律的.如: 1位回文数: 9个 2位回文数: 9个 3位回文数: 90个 4位回文数: 90个 5位回文数: 900个 6位回文数: 900个 … 我们看到9.90.900,是不是很有规律,那是什么原因?很简单,我们把回文数拆开两半 [123321]来看.两半的变化一样的,那我们只算其中一半就行了.首位不能是0,所以左半最小为 100,最大为999,共