题解 2862: 字符串移位包含问题 摘要: #include using namespace std; const int N=200000; char a[N],b[N]; int main()…… 题解列表 2023年12月17日 0 点赞 0 评论 177 浏览 评分:0.0
2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >> x ; …… 题解列表 2023年12月17日 0 点赞 0 评论 127 浏览 评分:0.0
2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >> x ; …… 题解列表 2023年12月17日 0 点赞 0 评论 143 浏览 评分:0.0
for and if买房子 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){ double y=200; …… 题解列表 2023年12月17日 0 点赞 0 评论 201 浏览 评分:0.0
字符串连接 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>int main() { char arr1[100]; gets(arr1); i…… 题解列表 2023年12月17日 0 点赞 0 评论 160 浏览 评分:0.0
最最最简单简单 2833: 金币,不用while,注释写好了 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n, total=0; // n 天数…… 题解列表 2023年12月18日 0 点赞 0 评论 156 浏览 评分:0.0
.................. 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; for(int i=0;i<3;i++) { for(…… 题解列表 2023年12月18日 0 点赞 0 评论 155 浏览 评分:0.0
绝对值排序(python) 摘要:解题思路:注意事项:参考代码:while True: nums = list(map(int, input().split())) n = nums[0] if n == 0: …… 题解列表 2023年12月18日 0 点赞 0 评论 179 浏览 评分:0.0
数列排序(python) 摘要:解题思路:注意事项:参考代码:n=int(input())for _ in range(n): nums=list(map(int,input().split())) left=[] …… 题解列表 2023年12月18日 0 点赞 0 评论 174 浏览 评分:0.0
第K极值(python) 摘要:解题思路:注意事项:参考代码:def is_prime(num): if num <= 1: return False for i in range(2, int(num *…… 题解列表 2023年12月18日 0 点赞 0 评论 234 浏览 评分:0.0