霸气灬钦哥
霸气灬钦哥
全部文章
题解
归档
标签
去牛客网
登录
/
注册
霸气灬钦哥的博客
交流学习,不仅在此
全部文章
/ 题解
(共6篇)
无题
#include<iostream> #include<cstring> using namespace std; int main() { string s; getline(cin,s); cout<<s<<endl; }分...
2020-07-25
2
553
简单粗暴的排序
#include<iostream> #include<iomanip> #include<algorithm> using namespace std; #define N 1005 int main() { int n; cin>>...
2020-07-25
15
703
水题
#include<iostream> using namespace std; #define N 105 int main() { int n; cin>>n; int a[N]; for(int i=1;i<=n;i++) {...
2020-07-25
0
530
日常过水题
#include<iostream> #include<cmath> using namespace std; int main() { int s; cin>>s; int c,k; int t=0; for(int i=...
2020-07-23
2
560
从几何意义上看
#include<iostream> #include<cmath> using namespace std; int main() { int a[6][6]; int m=0; for(int i=1;i<=5;i++) { ...
2020-07-23
2
653
别忘了sqrt
#include<iostream> #include<cmath> using namespace std; int main() { int n; cin>>n; for(int i=2;i<=n;i++) { ...
2020-07-23
0
555