2749: Hello, World! 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main() { cout<<"Hello, World!"; r…… 题解列表 2023年07月20日 0 点赞 0 评论 387 浏览 评分:7.3
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int n,m; …… 题解列表 2023年07月20日 0 点赞 0 评论 406 浏览 评分:7.3
2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,i,j;int main(){ …… 题解列表 2023年07月21日 0 点赞 0 评论 329 浏览 评分:7.3
光头强购买新家具 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;int n,m;int a[10005];…… 题解列表 2023年07月22日 0 点赞 0 评论 331 浏览 评分:7.3
最简介易懂示例!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 200int main(){ int n,i,num; int arr[N]; while(sca…… 题解列表 2023年07月26日 0 点赞 0 评论 387 浏览 评分:7.3
2913: 整数去重(C语言) 摘要: #include int main() { int n; scanf("%d", &n); int a[n]; for (int i = 0; i < n; …… 题解列表 2023年07月27日 0 点赞 0 评论 474 浏览 评分:7.3
2853: 字符替换(C语言) 摘要: #include int main() { char a[59]; char m,n; scanf("%s %c %c",a,&m,&n); int str_le…… 题解列表 2023年08月10日 0 点赞 0 评论 481 浏览 评分:7.3
自然数的拆分(dfs) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int N=10010; int …… 题解列表 2023年08月12日 0 点赞 0 评论 935 浏览 评分:7.3
运行时间过长(半天跑不出数)的看过来!!! 摘要:解题思路: 在CPU频率中,1GHz 就是每秒10亿次运算,你可以算一算自己CPU运算速度。 但是你若在写代码的过程中——比如说这道题——使用了三重嵌套for循环,那么就是…… 题解列表 2023年08月17日 1 点赞 0 评论 489 浏览 评分:7.3
信息学奥赛一本通T1176-谁考了第k名-题解(C语言代码排序) 摘要:解题思路:排序注意事项:参考代码:#include <stdio.h>struct stud{ char num[20]; float fen;}stu[1000],t;int main …… 题解列表 2023年09月07日 2 点赞 0 评论 1189 浏览 评分:7.3