无脑塞进数组求平均值
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner x = new Scanner(System.in); int n = x.nextInt(); int[] a = new int[n]; for (int i = 0; i < n; i += 1) { a[i] = x.nextInt(); } int sum = 0; for (int i = 0; i < n; i += 1) { sum += a[i]; } System.out.println(sum/n); x.close(); } }
0.0分
0 人评分
C二级辅导-计负均正 (C语言代码)浏览:607 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
钟神赛车 (C++代码)浏览:905 |
矩阵乘法 (C++代码)浏览:1662 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:668 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:631 |
三角形 (C++代码)记忆化搜索浏览:1317 |
【绝对值排序】 (C语言代码)浏览:892 |
数对 (C语言代码)浏览:762 |
sizeof的大作用 (C语言代码)浏览:1591 |