编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>using namespace std;const in…… 题解列表 2023年04月23日 0 点赞 0 评论 344 浏览 评分:0.0
删除重复元素(简单暴力循环) 摘要:```c #include void DelPack(char*); int main() { char str[100] = { 0 }; gets(str); DelPac…… 题解列表 2023年04月23日 0 点赞 0 评论 508 浏览 评分:9.9
蓝桥杯算法提高VIP-求指数 摘要:```c #include int main() { static int n, m; scanf("%d%d", &n, &m); int i = 1; for (i = …… 题解列表 2023年04月23日 0 点赞 0 评论 416 浏览 评分:9.9
合并两个单链表 摘要:```c 解题思路: #include #include typedef struct stu{ int id; //学号 int score; //成…… 题解列表 2023年04月23日 0 点赞 0 评论 440 浏览 评分:9.9
编写题解 2518: 信息学奥赛一本通T1620-质因数分解 摘要:解题思路:注意事项:该代码只适用于输入的 n 是两个不同的质数的乘积的情况,如果输入的 n 是一个质数,则输出结果不正确。参考代码:import java.util.Scanner;public cl…… 题解列表 2023年04月23日 0 点赞 0 评论 370 浏览 评分:0.0
计算分数加减表达式的值 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc =…… 题解列表 2023年04月23日 0 点赞 0 评论 457 浏览 评分:0.0
[编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = …… 题解列表 2023年04月23日 0 点赞 0 评论 368 浏览 评分:0.0
java验证子串(indexOf方法) 摘要:解题思路:利用indexOf方法判断一个字符串是否是另一个的子串注意事项:参考代码:package ten;import java.util.Scanner;public class 验证子串 { …… 题解列表 2023年04月24日 0 点赞 0 评论 452 浏览 评分:9.9
一个循环就行 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ for(int i=1000;i<10000;i++){ int t=i%100; …… 题解列表 2023年04月24日 0 点赞 0 评论 300 浏览 评分:0.0
快速排序练习(c语言) 摘要:```c #include #include #include void quick_sort(int* arr, int start, int end); int main() { …… 题解列表 2023年04月24日 0 点赞 0 评论 429 浏览 评分:9.9