I am Md.Azizul Hakim from Bangladesh.I love learning and sharing my knowledge.That is why I opted to write a blog.If you see any wrong information in anything that I write, please inform me and I'll try to improve my article.
Thank you for reading and for visiting my blog.
T20 XI of 2018 | BEST T20 XI 2018
Get link
Facebook
X
Pinterest
Email
Other Apps
-
Times Now T20 XI 2018: Shikhar Dhawan, Aaron Finch, Colin Munro, Glenn Maxwell, Dwyane Bravo, Pant, Rashid Khan, Andre Rusell, Kuldeep Yadav/Sunil Narine, Jofra Archer, Billy Stanlake.
URI Online Judge | 1013 The Greatest Adapted by Neilor Tonin, URI Brazil Timelimit: 1 Make a program that reads 3 integer values and present the greatest one followed by the message "eh o maior". Use the following formula: Input The input file contains 3 integer values. Output Print the greatest of these three values followed by a space and the message “eh o maior”. SOLVE A,B,S = input().split() A = int(A) B = int(B) S =int(S) P=max(A,B,S) print(P,"eh o maior")
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() ...
Comments
Post a Comment