字符串正反连接(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char str[]){ char* str1 = str; char* str…… 题解列表 2023年01月05日 0 点赞 0 评论 196 浏览 评分:0.0
根据判断最大公约数是否为一来判断 摘要:解题思路:我觉得最最最简单的思路了注意事项:参考代码:#include <stdio.h>int main(){ int i = 0; for(i=1;i<=40;i++) { …… 题解列表 2023年01月05日 0 点赞 0 评论 192 浏览 评分:0.0
C语言训练-求函数值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){ if(x==1) { return 10; } …… 题解列表 2023年01月05日 0 点赞 0 评论 228 浏览 评分:0.0
C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b,c; for(i=1000;i<=9999;i++) { …… 题解列表 2023年01月05日 0 点赞 0 评论 216 浏览 评分:0.0
编写题解 1030: [编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> #define n 3 //定义头文件 int main() { in…… 题解列表 2023年01月05日 0 点赞 0 评论 154 浏览 评分:0.0
编写题解 1670: 拆分位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> //定义头文件 int main() { int i,j,k,l; …… 题解列表 2023年01月05日 0 点赞 0 评论 173 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> //定义头文件 int main() { int i, j; for (i …… 题解列表 2023年01月05日 0 点赞 0 评论 148 浏览 评分:0.0
2913: 整数去重 摘要:```cpp #include using namespace std; int main() { int n,a[20001],j=1; cin>>n; for(int i=1;…… 题解列表 2023年01月05日 0 点赞 3 评论 401 浏览 评分:7.3
2909: 直方图 摘要:```cpp #include #include using namespace std; int main() { int fmax,maxs=0,a[10001],b[10001];…… 题解列表 2023年01月05日 0 点赞 0 评论 353 浏览 评分:9.9
2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct student { int chengji; char name[20]; };…… 题解列表 2023年01月05日 0 点赞 0 评论 452 浏览 评分:9.9