题解 1999: 回文判断

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

筛选

回文判断 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; int i,j,n; gets(s); n=str……

回文判断-题解(C语言代码)

摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![……

回文判断计算

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

1999: 回文判断

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