URI Online Judge | 1012 Area Solve with source code

URI Online Judge | 1012

Area

Adapted by Neilor Tonin, URI  Brazil
Timelimit: 1
Make a program that reads three floating point values: A, B and C. Then, calculate and show:
a) the area of the rectangled triangle that has base A and height C.
b) the area of the radius's circle C. (pi = 3.14159)
c) the area of the trapezium which has A and B by base, and C by height.
d) the area of the square that has side B.
e) the area of the rectangle that has sides A and B.




Input

The input file contains three double values with one digit after the decimal point.

Output

The output file must contain 5 lines of data. Each line corresponds to one of the areas described above, always with a corresponding message (in Portuguese) and one space between the two points and the value. The value calculated must be presented with 3 digits after the decimal point.


SOLVE

                      A,B,C = input().split()
                      A = float(A)
                      B = float(B)
                      C = float(C)
                      pi = 3.14159

                      Triangle = 1/2*A * C
                      Circle = pi*C*C
                      Trapezium = 1/2*(A+B)*C
                      square = B*B
                      rectangle = A*B
                      print("TRIANGULO: %.3f"%Triangle)
                      print("CIRCULO: %.3f"%Circle)
                      print("TRAPEZIO: %.3f"%Trapezium)
                      print("QUADRADO: %.3f"%square)

                      print("RETANGULO: %.3f"%rectangle)



Comments

Popular posts from this blog

How to solve an 8 puzzle problem using A* Algorithm in python

Timus Online Judge 1000. A+B Problem question and SOLVE with sudo code

URI Online Judge | 1013 The Greatest Solve with source code