上岸上岸上岸111
上岸上岸上岸111
全部文章
分类
归档
标签
去牛客网
登录
/
注册
上岸上岸上岸111的博客
全部文章
(共4篇)
题解 | #浮点数加法#
#include <iostream> #include <string> #include <stdlib.h> using namespace std; int main() { string str1, str2; while (cin &...
2023-03-07
0
216
题解 | #找最小数#
#include <iostream> #include <algorithm> using namespace std; struct dot{ int x; int y; }; dot dots[1001]; int compare1(dot a, d...
2023-02-15
0
276
题解 | #最小长方形#
#include <iostream> #include <algorithm> using namespace std; struct dot{ long x; long y; }; dot dots[10000*10000]; int main() ...
2023-02-14
0
301
题解 | #2的幂次方#
#include <iostream> using namespace std; string power(int n){ if(n == 1) return "2"; else if(n == 0) return "2(0)"; else{//n <= ...
2023-02-14
0
273