题解列表

筛选

c++语言解决电报加密

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char……

简简单单无脑列举

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void GetReal(float x){ cout << x << endl;}void ……

水题目,只需一个bool

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_leap(int y){ return y%4 == 0 && y % 100……

水题计算空格数即可

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespace std;const int N = ……

收费(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     double x,s;     scanf("%lf",&x);     if(x<=20)     {……

新手都能看懂的链表合并

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int n,m;    scanf("%d%d",&n,&m);    int a[n+m][2];  ……

编写题解 2917: 奇数单增序列

摘要:解题思路://给定一个长度为N(不大于500)的正整数序列,请将其中的所有奇数取出,并按升序输出。 #include <stdio.h> void sort(int arr[], int sz);……