lby_commandBlock
lby_commandBlock
全部文章
题解
归档
标签
去牛客网
登录
/
注册
lby_commandBlock的博客
全部文章
/ 题解
(共4篇)
题解 | #[NOIP2008]ISBN号码#
#include<cstdio> #include<iostream> using namespace std; int main(){ char a,b,c,d,e,f,g,h,i,j; int check; scanf("%c-%c%c%c-%c%c%c%c%c-%...
C++
2023-01-13
0
302
题解 | #数字反转之-三位数#
挑战最短代码! 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