谁拿了最多奖学金(用结构体解题) 摘要:解题思路:看到题目有这么多的属性,说明结构体解题更容易些注意事项:参考代码:#include<stdio.h> #include<string.h> struct student { …… 题解列表 2023年10月13日 0 点赞 0 评论 209 浏览 评分:0.0
字符串排序java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 371 浏览 评分:0.0
字符串判等java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 370 浏览 评分:0.0
字符串移位包含问题Java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 292 浏览 评分:0.0
编写题解 2846: 统计数字字符个数java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 362 浏览 评分:0.0
寻找矩阵最值——C语言 摘要:解题思路:首先预定义一个最大值max,然后与每次输入的数组元素及逆行比较,如果输入的元素的绝对值大于等于max则令max等于新输入数组中的值,同时改变预定义的最大值的下标注意事项:参考代码:#incl…… 题解列表 2023年10月13日 0 点赞 0 评论 240 浏览 评分:0.0
计算星期几 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年10月13日 0 点赞 0 评论 311 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct num { int f; int v; struct num* next;}n;str…… 题解列表 2023年10月13日 0 点赞 0 评论 266 浏览 评分:0.0
题解 2819:数字反转 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年10月13日 0 点赞 0 评论 414 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int a, int b){ int temp; while (a % b != 0) { temp = a % b;…… 题解列表 2023年10月13日 0 点赞 0 评论 403 浏览 评分:0.0