5.123
9.123
OUTPUT:
1.781
Press any key to continue
Question 2:
(1 mark, file to be edited: Q2.c)
Users are required to enter two integer numbers: 'x' and 'y' (x < y) using the keyboard (STDIN).
The system prints the sum of the even numbers from x to y.
Below is an example of how the program will run:
Enter the value 2 for 'x' and 20 for 'y'.
2
20
OUTPUT:
110
Press any key to continue