题解 2570: 蓝桥杯2020年第十一届省赛真题-成绩分析

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

原始求法java

摘要:解题思路:用for循环依次求最大值,最小值,平均值注意事项:参考代码:import java.util.Scanner;public class Main {    public static voi……

c语言简单解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,n,min=0,max=0,sum=0;    double av; scanf("%d",&n);……

简单的最大值最小值C语言代码

摘要:解题思路:求最大值(最小值)都是通过简单的for循环,对每一个数进行比较大小,谁大(小)就把谁的值赋给定义的最大值(最小值),不断更新,最后得到最大值(最小值)注意事项:平均分一定不要定义为整型参考代……

for循环暴力求解

摘要:解题思路:通过for循环遍历所有数求出最大与最小值。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int n;    double……

python format格式化输出

摘要:n=int(input())a=[]sum=0for i in range(n):    a.append(int(input()))    sum+=a[i]print(max(a))print(m……