回文判断(c语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char arr[20], i; …… 题解列表 2023年11月11日 0 点赞 0 评论 119 浏览 评分:0.0
回文判断 (C++代码) 摘要:解题思路:通过string类读取正整数,然后直接按照回文数的定义进行比较,可以只比较一半的字符串,单位了省事,我直接从头比较到尾注意事项:注意#include<string>,注意结果输出全是大写(Y…… 题解列表 2019年02月02日 0 点赞 0 评论 503 浏览 评分:0.0
回文判断-题解(C语言代码) 摘要://C语言编程 //我是真的服了,并没有错误,系统就是判定错误,搞不懂 #include int main() { int n=0,left,right; char s[100]; …… 题解列表 2019年11月04日 0 点赞 0 评论 545 浏览 评分:0.0
回文判断计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; int flag=0,i; ge…… 题解列表 2021年04月02日 0 点赞 0 评论 103 浏览 评分:0.0
回文判断-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(void){ int i,length,k=1; char a[1000]; ge…… 题解列表 2020年08月31日 0 点赞 0 评论 192 浏览 评分:0.0
回文判断-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { cha…… 题解列表 2020年02月09日 0 点赞 0 评论 342 浏览 评分:0.0
1999: 回文判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fanzhuan(ll x){ …… 题解列表 2024年07月10日 0 点赞 0 评论 50 浏览 评分:0.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
1999: 回文判断 摘要:equal 无脑往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; getlin…… 题解列表 2022年01月01日 0 点赞 0 评论 170 浏览 评分:0.0
好用的STL双端队列(1) 摘要:#include<bits/stdc++.h> using namespace std; deque<int>q; int main() { char c[1000]; c…… 题解列表 2024年07月26日 0 点赞 0 评论 39 浏览 评分:0.0