题解 1999: 回文判断

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

判断回文数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string s,t="";    cin>>s;  ……

回文判断(c语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() {     char arr[20], i;        ……

回文数的判断

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char arr[10000],str[100000];……

1999: 回文判断

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fanzhuan(ll x){  ……

回文判断-for循环

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){ chara[1……

回文判断 (C++代码)

摘要:解题思路:通过string类读取正整数,然后直接按照回文数的定义进行比较,可以只比较一半的字符串,单位了省事,我直接从头比较到尾注意事项:注意#include<string>,注意结果输出全是大写(Y……