所有代码中唯一没有用while的
摘要:```python
def hs(q):
p=0
for i in range(10):
if p>=9:
return(0)
……
c++最简单方法—递归
摘要:解题思路:每次刷新需要判断回文的数,进入下次递归进行判断注意事项:输出一次res就要给他重新刷新为0参考代码:#include<iostream>using namespace std;int re……
回文数(一)——python
摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): a = input() s = 0 while a!=a[::-1]: ……
1201: 回文数(一)
摘要:```c
#include
int huiwen(int n){
int cnt=0,i,k,a[100];
do{
a[cnt]=n%10;
cnt++;
n/=10……
回文数(python中函数的递归)
摘要:解题思路:注意事项:参考代码:while True:
try:
n = int(input())
count = 0
&n
1201: 回文数(一)
摘要:```cpp
#include
#include
using namespace std;
bool is_huiwen(int n)
{
char a[100];
bo……
编写题解 1201: 回文数(一)(简单 )
摘要:解题思路:注意事项:参考代码#include<bits/stdc++.h>using namespace std;int m;int cont;bool zhi(){ int a=0; int b=……