题解 1999: 回文判断

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

筛选

回文判断 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,k=0; char a[100000]; scanf("%s……

回文判断-for循环

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

1999: 回文判断(C语言)

摘要:解题思路:将输入字符串a倒着输出到b中,用函数strcmp判断两个数组是否相等。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    ……

1999: 回文判断

摘要:equal 无脑往上拍。#include <bits/stdc++.h> using namespace std; int main(){     string s;     getlin……

1999-回文判断(简洁)

摘要:```cpp #include #include using namespace std; int main() { long long n; //long long数据最大值占19……