1668: printf基础练习2 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<stdio.h> using namespace std; int main() { long …… 题解列表 2023年09月22日 0 点赞 0 评论 587 浏览 评分:0.0
1636: 蓝桥杯算法训练VIP-整除问题 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int min,max,factor; …… 题解列表 2023年09月22日 0 点赞 0 评论 284 浏览 评分:0.0
1635: 蓝桥杯算法训练VIP-整数平均值 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int m; long sum=0; …… 题解列表 2023年09月22日 0 点赞 0 评论 367 浏览 评分:0.0
1532: 蓝桥杯算法提高VIP-数组输出 摘要:解题思路:注意事项:它只需要比较列是否是最小的,最后更新列和行的数据就行。参考代码:#include<iostream> #include<cmath> using namespace std; …… 题解列表 2023年09月22日 0 点赞 0 评论 279 浏览 评分:0.0
1470: 蓝桥杯基础练习VIP-时间转换 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long long int t=0; …… 题解列表 2023年09月22日 0 点赞 0 评论 358 浏览 评分:0.0
宏定义练习之三角形面积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#define S(c,a,b) float s=(a+b+c)/2#define area(c,a…… 题解列表 2023年09月22日 0 点赞 0 评论 237 浏览 评分:0.0
弟弟的作业java使用正则表达式进行字符串提取 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月22日 0 点赞 0 评论 427 浏览 评分:0.0
[编程入门]结构体之成绩统计2java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月22日 0 点赞 0 评论 530 浏览 评分:0.0
我的非常简单 摘要:解题思路:注意事项:参考代码:import mathwhile True: L, W, x, y, R, a, v, s = map(int, input().split()) if L …… 题解列表 2023年09月22日 0 点赞 0 评论 444 浏览 评分:9.9
优质题解 结构体+自定义sort轻松拿捏 摘要:解题思路:显而易见本题可利用结构体将各科成绩、学号等联系在一起,再根据题目给出的排序规则,自定义sort的方式即可。注意事项:第一个关键在于sort方式的编写,要先依据总分,总分相同比较语文成绩,若再…… 题解列表 2023年09月22日 0 点赞 0 评论 818 浏览 评分:9.9