Basic Pascal Tutorial/Chapter 2/Programming Assignment

From Free Pascal wiki
Revision as of 19:04, 9 November 2007 by Kees (talk | contribs) (New page: 2F - Programming Assignment Again find the sum and average of five numbers, but this time read in five integers and display the output in neat columns. Refer to the original problem spec...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

2F - Programming Assignment

Again find the sum and average of five numbers, but this time read in five integers and display the output in neat columns.

Refer to the original problem specification if needed. You should type in the numbers separated by spaces from the keyboard: 45 7 68 2 34.

The output should now look like this:

Number of integers = 5

Number1:      45
Number2:       7
Number3:      68
Number4:       2
Number5:      34
================
Sum:         156
Average:      31.2

As an added exercise, you can try to write the output to a file. However, I won't use files in the problem solution.

previous contents next