给我就亿下
给我就亿下
全部文章
分类
归档
标签
去牛客网
登录
/
注册
给我就亿下的博客
全部文章
(共47篇)
题解 | #字符串排序#
#include <iostream> #include <algorithm> using namespace std; int main () { string str; while (cin >> str){ sort (str.begin(),...
2023-03-10
0
219
题解 | #学分绩点#
#include <iostream> using namespace std; const int MAXN = 10; int xuefen[MAXN]; int shijidefen[MAXN]; double shijichengjijidian (int a){ if ...
2023-03-09
0
262
题解 | #打印极值点下标#
#include <iostream> using namespace std; const int MAXN = 80 + 10; int a[MAXN]; int main () { int n; while (scanf ("%d", &n) != EOF){ for...
2023-03-09
0
190
题解 | #小白鼠排队#
#include <iostream> #include <algorithm> #include <string> using namespace std; const int MAXN = 100; struct mouse { int weight;...
2023-03-09
0
198
题解 | #成绩排序#
#include <iostream> #include <algorithm> #include <string> using namespace std; struct student{ string name; int score; ...
2023-03-08
0
258
题解 | #n的阶乘#
#include <iostream> using namespace std; long long Fibonacci (int n){ //第一次写int错了 if (n == 0){ return 1; } return n * Fibon...
2023-03-08
0
214
题解 | #Digital Roots#
#include <iostream> using namespace std; int x = 0; int checkSum (int n){ int sum = 0; while (n != 0){ sum += n % 10; ...
2023-03-07
0
228
首页
上一页
1
2
3
4
5
下一页
末页