噼里啪啦嘣_
噼里啪啦嘣_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
噼里啪啦嘣_的博客
全部文章
(共4篇)
题解 | #求最大最小数#
#include<bits/stdc++.h> using namespace std; int main() { //不用排序,在输入数据的时候维护好最大值最小值即可 int n; while ( cin >> n ) { int a[n]...
2023-03-13
0
296
题解 | #反序输出#
#include<iostream> using namespace std; int main() { string str; while( cin>>str ) cout<<str[3]<<str[2]<<str[1]<&...
2023-03-13
0
325
题解 | #反序输出#
#include<bits/stdc++.h> using namespace std; const int maxn = 1010; int main() { char data[maxn][10]; int x = 0; while ( ~scanf("%...
2023-03-13
0
237
题解 | #反序输出#
#include<bits/stdc++.h> using namespace std; const int maxn = 1010; int main() { char data[maxn][10]; int x = 0; while ( ~scanf("%...
2023-03-13
0
233