Programming contests

50 Programming Exercise for Beginners

January 2, 2019 12:00 AM – December 31, 2019 12:00 AM

Average of Integers #1

Write a program that reads integers from the standard input and computes their average.

Input Specification

The first line of the input contains a positive integer n, which is followed by n integers (one per line).

Output Specification

The program should write a single line to the standard output containing the average of the n numbers with a precision of two decimal places.

Sample Input

  1. 5
  2. -2
  3. -1
  4. 0
  5. 1
  6. 2
download as text file

Output for Sample Input

  1. 0.00
download as text file

One possible solution is available in: main.c.

Acknowledgement This work was supported by the construction EFOP-3.4.3-16-2016-00021. The project was supported by the European Union, co-financed by the European Social Fund.
University of Debrecen; Faculty of Informatics; v. 03/01/2019