Домашно Console Input Output. Грешни задачи.
Problem 1. Sum of 3 integers
Write a program that reads 3 integer numbers from the console and prints their sum. Examples:
a |
b |
c |
sum |
3 |
4 |
11 |
19 |
-2 |
0 |
3 |
1 |
5.5 |
4.5 |
20.1 |
30.1 |
На някого да му е направило впечатление, че първо 3+4+11 е 18 а не 19 и второ че в задачата пише 3 INTEGER numbers а в последния ред от примера приема дробни числа?
Problem 3. Circle Perimeter and Area
Write a program that reads the radius r of a circle and prints its perimeter and area formatted with 2 digits after the decimal point. Examples:
r |
perimeter |
area |
2 |
12.57 |
12.57 |
3.5 |
21.99 |
38.48 |
2*3.14*2=12.56
2*3.14*3.5=21.98
3.14*3.5*3.5=38.47