题解列表

筛选

字符串正反连接(C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char str[]){ char* str1 = str; char* str……

C语言训练-求函数值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){      if(x==1)      {            return 10;      }   ……

编写题解 1670: 拆分位数

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> //定义头文件 int main() {      int i,j,k,l;    ……

编写题解 1671: 小九九

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> //定义头文件 int main() {   int i, j;   for (i ……

2913: 整数去重

摘要:```cpp #include using namespace std; int main() { int n,a[20001],j=1; cin>>n; for(int i=1;……

2909: 直方图

摘要:```cpp #include #include using namespace std; int main() { int fmax,maxs=0,a[10001],b[10001];……