2863: 删除单词后缀 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 218 浏览 评分:0.0
题解 1128: C语言训练-排序问题(1) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int main(){ for(int i=1;i<=4;i++…… 题解列表 2024年07月14日 0 点赞 0 评论 171 浏览 评分:0.0
1128: C语言训练-排序问题(1) 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; cons…… 题解列表 2024年07月14日 0 点赞 0 评论 194 浏览 评分:0.0
关于Python的基本输入输出 摘要:import sys sys.set_int_max_str_digits(100000000) while True: try: n = int(input()) …… 题解列表 2024年07月15日 0 点赞 0 评论 169 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[504],b[504];int main(){ int n,sum=0…… 题解列表 2024年07月15日 0 点赞 0 评论 330 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:```cpp #include using namespace std; typedef long long ll; ll a[503],cnt; int main() { l…… 题解列表 2024年07月15日 0 点赞 0 评论 308 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2024年07月15日 0 点赞 0 评论 210 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;ll a[…… 题解列表 2024年07月15日 0 点赞 0 评论 358 浏览 评分:0.0
Java学习小练习 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年07月16日 0 点赞 0 评论 171 浏览 评分:0.0
2803: 整数的个数 摘要:参考代码:#include<stdio.h>int main(){ int k; int a=0,b=0,c=0,d; scanf("%d",&k); for(int i=1;…… 题解列表 2024年07月16日 0 点赞 0 评论 225 浏览 评分:0.0