题解列表

筛选

编写题解 1390: 大神老白

摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> #include <stdlib.h> int main() {   int a, ……

编写题解 1388: GC的苦恼

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {   int a;   while (scanf("%d", &a) != EOF) {     i……

1213: 幸运儿

摘要:```cpp #include using namespace std; int n; bool flag[100]; bool f() { int num=0; fo……

1212: 年会(c++代码)

摘要:```cpp #include #include #ifndef LOCAL #endif constexpr auto Inf=0X3F3F3F3F; typedef long long ……

1210: 小明A+B

摘要:```cpp #include using namespace std; int main() { int t,a,b; cin>>t; for(int i=1;……

麻瓜方法 教你如何求e(正常人思维=_=||)

摘要:解题思路:        根据题目一步一步写就可以了,下面请欣赏我的高质量答案=_=||注意事项:        像我这样写就要注意初始o值的变化参考代码:#include<stdio.h>int m……