[编程入门]结构体之成绩统计2 摘要:```cpp 只需要比上一题多加两个函数:求每名同学成绩的平均分函数,以及求最大值的函数。具体见代码: #include using namespace std; class studen…… 题解列表 2023年03月20日 0 点赞 0 评论 245 浏览 评分:9.9
数组整数处理 摘要: #include void swap( int num[], int n1, int n2); int main(){ int num[10], min…… 题解列表 2023年03月20日 0 点赞 0 评论 251 浏览 评分:0.0
暴力出奇迹 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct date { int year; int mouth; int day; }a; scanf…… 题解列表 2023年03月20日 0 点赞 0 评论 151 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:```cpp #include using namespace std; class student { public: string number; strin…… 题解列表 2023年03月20日 0 点赞 0 评论 211 浏览 评分:9.9
信息学奥赛一本通T1309-回文数 Java 摘要:解题思路:没什么特别思路注意事项:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main {…… 题解列表 2023年03月20日 0 点赞 0 评论 233 浏览 评分:9.9
蓝桥杯基础练习-十六进制转十进制(简单) 摘要:用输入输出格式符来解题 ```c #include int main() { long int a; scanf("%X",&a); printf("%d\n…… 题解列表 2023年03月20日 0 点赞 0 评论 320 浏览 评分:0.0
更相减损法 c++ 摘要:解题思路:更相减损法注意事项:参考代码:#include <iostream>using namespace std;int main() { int a,b; cin>>a>>b; int m = …… 题解列表 2023年03月20日 0 点赞 0 评论 161 浏览 评分:0.0
蓝桥杯算法提高VIP-十进制数转八进制数 摘要:```c #include void zhuan8(int a); int main() { int n; scanf("%d",&n); zhuan8(n); retur…… 题解列表 2023年03月20日 0 点赞 0 评论 298 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:设置d=b*b-4*a*c注意事项:d<0时,x1、x2转换的数值类型参考代码:def g(a,b,c): d=b*b-4*a*c if d >0: x1 = (…… 题解列表 2023年03月20日 0 点赞 0 评论 201 浏览 评分:0.0