回文判断 (C++代码) 摘要:解题思路:通过string类读取正整数,然后直接按照回文数的定义进行比较,可以只比较一半的字符串,单位了省事,我直接从头比较到尾注意事项:注意#include<string>,注意结果输出全是大写(Y…… 题解列表 2019年02月02日 0 点赞 0 评论 503 浏览 评分:0.0
回文判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,k=0; char a[100000]; scanf("%s…… 题解列表 2019年02月13日 1 点赞 0 评论 802 浏览 评分:5.0
回文判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(void){ int length, i, j; int sign =…… 题解列表 2019年02月16日 0 点赞 0 评论 490 浏览 评分:0.0
回文判断 (C语言代码)(非同一般的解法,懂的是大神) 摘要:#include<stdio.h> #include<string.h> int main() { char s[200]; int i,d; gets(s); d=strlen…… 题解列表 2019年03月29日 1 点赞 0 评论 812 浏览 评分:7.0
回文判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[1000]; int i,j,len; ge…… 题解列表 2019年04月04日 0 点赞 0 评论 1289 浏览 评分:7.3
回文判断 (C语言代码)另开数组。。。 摘要:解题思路:因为回文嘛正反都一样。分别用另数组存储再比较!!注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100000]…… 题解列表 2019年04月14日 0 点赞 0 评论 422 浏览 评分:0.0
回文判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; int i,j,n; gets(s); n=str…… 题解列表 2019年04月15日 0 点赞 0 评论 347 浏览 评分:0.0
回文判断 (C/C++语言代码) 摘要:解题思路:回文就是正反都一样。在判断过程中只要判断到串中间位置即可;因为每次都是选两个字符判断你是否相等(分别从首位开始和从末尾开始),在判断过程中,只要有不相等就直接返回false,反之一直比下去,…… 题解列表 2019年05月19日 7 点赞 0 评论 875 浏览 评分:7.3
回文判断-题解(C++代码) 摘要:水题呀 ```cpp #include #include using namespace std; int main() { long long n; …… 题解列表 2019年06月11日 0 点赞 0 评论 408 浏览 评分:0.0
回文判断-题解(C语言代码) 摘要: #include #include int main() { char a[100],s[100]; int mid,len,i,j,to…… 题解列表 2019年08月14日 0 点赞 0 评论 360 浏览 评分:0.0