Advertisement
Guest User

s

a guest
Oct 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1.     public static void main(String[] args) {
  2.    
  3.         Scanner s = new Scanner(System.in);
  4.         System.out.print("Введите размер списка: ");
  5.         int ss = s.nextInt();
  6.         int[] l = new int[ss];
  7.         for (int i = 0; i < l.length; i++) {
  8.             System.out.print("Цена " + (i + 1) + " продукта: ");
  9.             l[i] = s.nextInt();
  10.         }
  11.         int sum = 0;
  12.         for (int aL : l) {
  13.             sum += aL;
  14.         }
  15.         System.out.println("Сумма: " + sum);
  16.         System.out.println("Средняя цена: " + (sum / l.length));
  17.  
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement