2920: 分数线划定 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { string str; int…… 题解列表 2023年12月09日 0 点赞 0 评论 603 浏览 评分:9.9
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh; int yv; …… 题解列表 2023年12月09日 0 点赞 0 评论 435 浏览 评分:9.9
注意爆int(错了十几次) 摘要:1. 打表import java.util.Scanner; public class Main { static int N = 1010, mod = 1000000007; …… 题解列表 2023年12月09日 0 点赞 2 评论 1559 浏览 评分:9.9
【Java】计算两个数的和 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]args)…… 题解列表 2023年12月10日 0 点赞 0 评论 872 浏览 评分:9.9
围圈报数(python) 摘要:解题思路:注意事项:参考代码:def josephus(n, m): # 创建编号列表 people = list(range(1, n + 1)) # 记录出列的顺序 ord…… 题解列表 2023年12月10日 0 点赞 0 评论 531 浏览 评分:9.9
全排列(python) 摘要:解题思路:注意事项:参考代码:def permutations(s, prefix=""): if len(s) == 0: print(prefix) else: …… 题解列表 2023年12月10日 0 点赞 0 评论 586 浏览 评分:9.9
编写题解 2779: 输出绝对值 摘要:解题思路:#include <bits/stdtr1c++.h>using namespace std;int main(){ double a; cin>>a; if(a>0) …… 题解列表 2023年12月10日 0 点赞 0 评论 1006 浏览 评分:9.9
收费的题解 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double n; cin >> n; …… 题解列表 2023年12月10日 0 点赞 1 评论 393 浏览 评分:9.9
大神老白!!!!!!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a = 0; int arr[100]; while (~scanf("…… 题解列表 2023年12月10日 0 点赞 1 评论 549 浏览 评分:9.9
分段函数求值 摘要:解题思路:考虑分段函数的不同区间所对应的函数关系式。注意事项:且用&参考代码:import java.util.Scanner;public class Main { public static…… 题解列表 2023年12月10日 0 点赞 0 评论 786 浏览 评分:9.9