标签:输出 简单 class 元素访问 next temp png sys 知识点
.1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。
package chap; public class test1 { public static void main(String[] args) { int[] arr={10,20,30,40,50}; for(int i=0;i<5;i++){ System.out.println(arr[i]); } } }
2.编写一个简单程序,要求数组长度为5,动态赋值10,20,30,40,50,在控制台输出该数组的值。
package chap; public class test1 { public static void main(String[] args) { int[] arr=new int[]{10,20,30,40,50}; for(int i=0;i<arr.length;i++) { System.out.println(arr[i]); } } }
3.编写一个简单程序,定义整型数组,里面的元素是{23,45,22,33,56},求数组元素的和、平均值
package chap; public class test1 { public static void main(String[] args) { int[] arr={23,45,22,33,56}; double sum=0; for(int i = 0; i < arr.length; i++){ sum += arr[i]; } System.out.println("和是"+sum+"平均值是"+sum/5); } }
4.在一个有8个整数(18,25,7,36,13,2,89,63)的数组中找出其中最大的数及其下标
package chap; public class test1 { public static void main(String[] args) { int[] arr={18,25,7,36,13,2,89,63}; int a=0; int max=arr[0]; for(int i=1;i<arr.length-1;i++){//i表循环次数 if(arr[i]>max) {//i表下标 max=arr[i]; a=i; } } System.out.println("最大数为"+max+";下标为"+a); } }
5. 将一个数组中的元素逆序存放(知识点:数组遍历、数组元素访问)
public class test1 { public static void main(String[] args) { Scanner s=new Scanner(System.in); System.out.println("请输入数组长度 " ); int a = s.nextInt(); int b[] = new int[a]; for (int i = 0; i < b.length; i++) { System.out.println("请输入第" + (i + 1) + "个元素"); b[i] = s.nextInt(); } int temp; for (int i = 0; i < b.length - 1; i++) { for (int j = b.length - 1; j > i; j--) { if (b[j] > b[j - 1]) { temp = b[j - 1]; b[j - 1] = b[j]; b[j] = temp; } } } System.out.println(); System.out.println("逆序排出:"); for (int i = 0; i < b.length; i++) { System.out.print(b[i] + "\t"); } } }
标签:输出 简单 class 元素访问 next temp png sys 知识点
原文地址:https://www.cnblogs.com/lutiantian/p/12665821.html