回文串(回文串特点解法) 摘要:解题思路:知道回文串首尾相同的特点就很好解决。注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char srr[…… 题解列表 2024年11月13日 0 点赞 0 评论 202 浏览 评分:0.0
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s, s2; …… 题解列表 2024年11月13日 0 点赞 0 评论 187 浏览 评分:0.0
2874: 行程长度编码(暴力) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char a[1001]; f…… 题解列表 2024年11月13日 0 点赞 0 评论 160 浏览 评分:0.0
1200: 回文串(详细简单暴力解) 摘要:#include #include int main() { char a[256]; fgets(a, sizeof(a), stdin); // 去除fge…… 题解列表 2024年11月13日 0 点赞 0 评论 331 浏览 评分:0.0
用C语言的递归函数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>long long ww(int M, int N); // 指定返回类型为 long longint main() { int…… 题解列表 2024年11月13日 1 点赞 0 评论 412 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,i,s1=0,s2=0; double c,s3=0…… 题解列表 2024年11月13日 0 点赞 0 评论 523 浏览 评分:0.0
加工生产调度 摘要: //这类生产加工题型记住了 #include using namespace std; const int N=10001; struct node{…… 题解列表 2024年11月13日 0 点赞 0 评论 249 浏览 评分:0.0
代码如下: 摘要:解题思路: 太简单了注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string s; int…… 题解列表 2024年11月13日 0 点赞 0 评论 201 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int b,c,d,i; for(i=100;i<1000;i++)…… 题解列表 2024年11月13日 0 点赞 0 评论 488 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,j,s; scanf("%d",&a); for(i=2;i<=a;i++) …… 题解列表 2024年11月13日 0 点赞 0 评论 209 浏览 评分:0.0