笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #打印日期#
#include <iostream> using namespace std; int main() { int year,num; int months[]={0,31,28,31,30,31,30,31,31,30,31,30,31}; while(cin&...
2024-03-18
0
162
题解 | #重载运算符#
#include <iostream> #include <cmath> #include <iomanip> using namespace std; int main() { float n,a,b;cin>>n; //圆周率 ...
2024-03-18
0
192
题解 | #点的距离#
#include <iomanip> #include <iostream> #include <cmath> using namespace std; int main() { int n;cin>>n; while(n--){ ...
2024-03-18
0
183
题解 | #矩阵转置#
#include <iostream> using namespace std; int main() { int n;cin>>n; int arr[n][n]; for(int i =0;i<n;i++) for(int j...
2024-03-17
0
197
题解 | #复数#
#include <iostream> using namespace std; class complex{ public: int real; int unreal; complex(int a,int b){ ...
2024-03-17
0
168
题解 | #搬水果#优先队列解法
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ if(n==0)return 0; priority_queue&...
2024-03-16
0
229
题解 | #今年的第几天?#
#include <iostream> using namespace std; int main() { int year,month,day; while(cin>>year>>month>>day){ int ar...
2024-03-16
0
219
题解 | #字符串连接#好好好
#include <iostream> using namespace std; int main() { string a, b; while (cin >> a >> b) { // 注意 while 处理多个 case co...
2024-03-16
0
186
题解 | #最大的两个数#
#include <bits/stdc++.h> using namespace std; int main() { int arr[4][5]; for(int i =0;i<4;i++) for(int j =0;j<5;j++) ...
2024-03-16
0
177
题解 | #Problem E#
#include <bits/stdc++.h> using namespace std; int bracketNum(char c) { if (c == '(')return 1; if (c == ')')return -1; if (c == '[')r...
2024-03-16
0
204
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页