编写题解 1201: 回文数(一)(简单 ) 摘要:解题思路:注意事项:参考代码#include<bits/stdc++.h>using namespace std;int m;int cont;bool zhi(){ int a=0; int b=…… 题解列表 2022年07月20日 0 点赞 0 评论 243 浏览 评分:9.9
回文数(一) (Java代码)递归实现 摘要:**递归实现** 判断回文串方法:将原字符串反转,得到新串,如果原字符串跟新串相等,则是回文串(我这里写了一个rep方法来反转字符串) 所以递归退出条件是:字符串已经是回文串或者步数已经大于8 …… 题解列表 2019年12月25日 0 点赞 0 评论 898 浏览 评分:9.9
1201: 回文数(一) 摘要:```cpp #include #include using namespace std; bool is_huiwen(int n) { char a[100]; bo…… 题解列表 2023年01月01日 0 点赞 0 评论 181 浏览 评分:9.9