Advertisement
sergAccount

Untitled

Aug 9th, 2020
1,187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.03 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.app9;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test2 {
  13.    
  14.     /*    
  15.     Задача 7
  16.     Объявить массив элементов типа double в котором должно храниться 5 чисел.
  17.     Заполнить массив произвольными числами.
  18.     Вычислить среднее арифметическое элементов данного массива и вывести
  19.     это значение на экран.  
  20.     */    
  21.     public static void main(String[] args) {        
  22.          // 1, 2, 3, 4, 5
  23.         double[] array = {1, 2, 3, 4, 5, 7, 8};
  24.         double s = 0;
  25.         for(double v: array){
  26.             s = s + v;
  27.             //s+=v;
  28.         }
  29.         s = s / array.length;
  30.         System.out.println(s);
  31.        
  32.     }
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement