(轻轻松松)宏定义练习之三角形面积 摘要:解题思路: 直接用它给的公式算起!注意事项: 要用开方!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int …… 题解列表 2023年11月27日 0 点赞 0 评论 168 浏览 评分:0.0
简单易操作(学不会来cue我) 摘要:###我的思路 1. 使用结构体数组存储好学生的各项信息 2. 计算每科平均值 3. 比较学生总成绩 4. 输出每科成绩平均值以及最高分学生的信息(注意是各项信息而非单指成绩) ###注…… 题解列表 2023年11月27日 0 点赞 0 评论 229 浏览 评分:9.9
编写题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年11月27日 0 点赞 0 评论 372 浏览 评分:9.9
2837: 年龄与疾病 摘要:``` #include using namespace std; int n[100000],a; double q,w,e,r; int main() { cin>>a; for…… 题解列表 2023年11月27日 0 点赞 0 评论 282 浏览 评分:0.0
解 3020: 最大数位置 摘要: #include using namespace std; const int N = 20000; int a[N]; int i,w=0,c; …… 题解列表 2023年11月27日 0 点赞 0 评论 393 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:```cpp #include using namespace std; int h[10],a; int main(){ for( int i=1;i>h[i]; } cin>>…… 题解列表 2023年11月27日 0 点赞 0 评论 195 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要: #include using namespace std; const int N = 2e6; int a[N]; int i; int m…… 题解列表 2023年11月27日 0 点赞 0 评论 221 浏览 评分:0.0
菜鸡做的,仅供参考,不足请指导 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2023年11月27日 0 点赞 0 评论 231 浏览 评分:2.0
3000: 交换值 摘要:```cpp #include using namespace std; int main() { int a, b; cin >> a >> b; int temp =…… 题解列表 2023年11月27日 0 点赞 0 评论 291 浏览 评分:0.0
最高的分数(最简单版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); for(int i=0;i<a;…… 题解列表 2023年11月27日 0 点赞 0 评论 389 浏览 评分:0.0