第六次Java 作业

1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。

1 package Text;
2 public class zuoye7{
3      public static void main(String[] args) {
4           int arr[] = {10,20,30,40,50};
5           for(int i =0;i<5;i++) {
6               System.out.println(arr[i]);
7           }
8         }
9     }

2.编写一个简单程序,要求数组长度为5,动态赋值10,20,30,40,50,在控制台输出该数组的值。

 1 package Text;
 2 public class zuoye7{
 3      public static void main(String[] args) {
 4          int[] a = new int[6];
 5          for (int i = 1; i < a.length; i++) {
 6          a[i]+=a[i-1]+10;
 7          System.out.print(a[i] + " ");
 8          }
 9          }
10          }

3.编写一个简单程序,定义整型数组,里面的元素是{23,45,22,33,56},求数组元素的和、平均值

package Text;
public class zuoye7{
     public static void main(String[] args) {
         int[] a = new int[]{23,45,22,33,56};
         int sum=0,pj=0;
         for (int i = 0; i < a.length; i++) {
         sum+=a[i];
         }
         pj=sum/5;
         System.out.println(sum + " " + pj);
         }
         }

4.在一个有8个整数(18,25,7,36,13,2,89,63)的数组中找出其中最大的数及其下标。

 1 package Text;
 2 public class zuoye7{
 3      public static void main(String[] args) {
 4                   int[] a = {18,25,7,36,13,2,89,63};
 5                   int max = a[0];
 6                   int maxIndex = 0;
 7                   for(int i=1;i)
 8                   {
 9                       if(max<=a[i]){
10                           max = a[i];
11                           maxIndex = i;
12                       }
13                   }
14                   System.out.println("最大值为:"+max+" 最大值下标为:"+maxIndex);
15               }
16             }

5.将一个数组中的元素逆序存放(知识点:数组遍历、数组元素访问)

package Text;
public class zuoye7{
     public static void main(String[] args) {
                 int [] a = new int [] {4,1,3,5,9,2,1};
                    int t;
                    for(int i = 0; i < a.length / 2; i ++) {
                        t = a[i];
                        a[i] = a[a.length - 1 - i];
                        a[a.length - 1 - i] = t;
                    }
                    for(int i = 0; i < a.length; i ++) {
                        System.out.print(a[i] + ", ");
                    }
             }
         }

 

你可能感兴趣的:(第六次Java 作业)