1852: 求1+2+3+...+n的值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long n,m,b,sum=0;long long gaosi(lon…… 题解列表 2023年07月22日 0 点赞 0 评论 270 浏览 评分:9.9
1852: 求1+2+3+...+n的值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long sum(long long n){ long long …… 题解列表 2023年07月22日 0 点赞 0 评论 150 浏览 评分:0.0
2880: 计算鞍点 摘要:解题思路:int main() { for(int i=1;i<=5;i++)//双重循环1 { for(int j=1;j<=5;j++)//双重循环2 …… 题解列表 2023年07月22日 0 点赞 0 评论 473 浏览 评分:9.9
2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,sum=0;int main(){…… 题解列表 2023年07月22日 0 点赞 0 评论 311 浏览 评分:9.9
2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[1005][1005];int main(){ fo…… 题解列表 2023年07月22日 0 点赞 0 评论 202 浏览 评分:0.0
[编程入门]第一个HelloWorld程序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("Hell…… 题解列表 2023年07月22日 0 点赞 0 评论 136 浏览 评分:2.0
蓝桥杯算法训练-大等于n的最小完全平方数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;int n,m;int a[10005];…… 题解列表 2023年07月22日 0 点赞 0 评论 224 浏览 评分:2.0
光头强购买新家具 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;int n,m;int a[10005];…… 题解列表 2023年07月22日 0 点赞 0 评论 202 浏览 评分:7.3
第几项33333333 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,s = 0; cin>>a; …… 题解列表 2023年07月22日 0 点赞 0 评论 282 浏览 评分:9.9
数组模拟队列 摘要:解题思路:使用数组模拟队列注意事项:没有使用STL,避免超时参考代码:#include<iostream>#include<algorithm>using namespace std;const in…… 题解列表 2023年07月21日 0 点赞 0 评论 263 浏览 评分:9.9