题解列表

筛选

2000: 偶数列举

摘要:```cpp #include using namespace std; int main() { int n; cin>>n; for(int i=2;i……

用栈实现八进制转换

摘要:```c #include #include typedef struct Stack { int data[100]; int top; }*Stack,stack; //入栈 ……

鸡尾酒疗法c++

摘要:解题思路:注意事项:    样例过了的话,可能是没有换行,加上换行就对了参考代码:#include<bits/stdc++.h>using namespace std;int main(){     ……

数组输出(C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int i,j;    int a[100][100];    for(i……