1002题: 求出三个输入数中的最大值,并返回该值 摘要:# 自己写的代码: ```c #include int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b){…… 题解列表 2023年04月24日 0 点赞 0 评论 311 浏览 评分:0.0
1001题: 第一个HelloWorld程序 摘要:自己写的代码: #include int main() { printf("**************************\n"); printf("Hello Wor…… 题解列表 2023年04月24日 0 点赞 0 评论 330 浏览 评分:0.0
合并区间(c语言) 摘要:```c #include #include char arr[100000];//要输入的数据最多100000 所以用char类型 int main() { int n, m; …… 题解列表 2023年04月24日 0 点赞 0 评论 391 浏览 评分:9.9
1000题: 循环计算a+b 摘要:自己写代码的难点: 局限于用for循环,循环加载输入数字后,无法做到循环输出对应的结果; 自己代码: #include int main() { int a,b; f…… 题解列表 2023年04月24日 0 点赞 0 评论 305 浏览 评分:0.0
坐标排序(c语言qsort函数实现) 摘要:```c #include #include typedef struct coord { int x, y, z;//坐标 }coord; void my_qsort(void*…… 题解列表 2023年04月24日 0 点赞 1 评论 512 浏览 评分:6.0
题目 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <string.h>int main(){ char a[520],b[520]; gets(a); …… 题解列表 2023年04月24日 0 点赞 0 评论 422 浏览 评分:9.9
快速排序练习(c语言) 摘要:```c #include #include #include void quick_sort(int* arr, int start, int end); int main() { …… 题解列表 2023年04月24日 0 点赞 0 评论 358 浏览 评分:9.9
一个循环就行 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ for(int i=1000;i<10000;i++){ int t=i%100; …… 题解列表 2023年04月24日 0 点赞 0 评论 236 浏览 评分:0.0
java验证子串(indexOf方法) 摘要:解题思路:利用indexOf方法判断一个字符串是否是另一个的子串注意事项:参考代码:package ten;import java.util.Scanner;public class 验证子串 { …… 题解列表 2023年04月24日 0 点赞 0 评论 398 浏览 评分:9.9
[编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = …… 题解列表 2023年04月23日 0 点赞 0 评论 303 浏览 评分:0.0