lby_commandBlock
lby_commandBlock
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
lby_commandBlock的博客
全部文章
(共3篇)
题解 | #数字反转之-三位数#
挑战最短代码! Python3代码: print(input()[::-1]) 你没有看错,只有一行! C++题解 #include<bits/stdc++.h> using namespace std; int main(){ string s; cin >&...
Python3
C++
2023-01-12
1
369
题解 | #牛牛学矩形#
C++题解: #include<bits/stdc++.h> using namespace std; int main(){ int a, b; cin >> a >> b; cout << (a + b) * 2 <&...
C++
Python3
2023-01-12
0
329
题解 | #牛牛学圆#
python题解: pi = 3.14159 r = float(input()) print(2 * pi * r) print(r ** 2 * pi) C++题解: #include<bits/stdc++.h> using namespace std; const double...
C++
Python3
2023-01-12
0
354