Get reliable answers to your questions at Westonci.ca, where our knowledgeable community is always ready to help. Connect with a community of experts ready to help you find solutions to your questions quickly and accurately. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform.
Sagot :
"""
1.Write a program in python to find the area of rectangle with following inputs:
Length = 4
Breadth = 5
2. Write a program in python to print multiples of 5
3. Write a program in python to check if the given number is positive or negative
4. Write a program in python to find the following
a) Average of 3 numbers
b) Power of 2 numbers
c) Minimum of 3 numbers
"""
# Program 1
print("Question 1")
print("Rectangle Area Calculator")
length = int(input("Enter length > "))
breadth = int(input("Enter breadth > "))
print(length * breadth)
# Program 2
print("Question 2")
for multiplier in range (0, 13):
print(5 * multiplier)
# Program 3
print("Question 3")
num = int(input("Enter a number to check if positive or negative > "))
if num > 0:
print("positive")
elif num < 0:
print("negative")
else:
print("0")
# Program 4
# Part A
print("Question 4A")
num1 = int(input("Enter first num > "))
num2 = int(input("Enter second num > "))
num3 = int(input("Enter third num > "))
print("Average:", (num1 + num2 + num3) / 3)
# Part B
print("Question 4B")
base = int(input("Enter base > "))
power = int(input("Enter power > "))
print(base ** power)
# Part C
print("Question 4C")
num1 = int(input("Enter first num > "))
num2 = int(input("Enter second num > "))
num3 = int(input("Enter third num > "))
print("Min:", min(num1, num2, num3))
We appreciate your time. Please revisit us for more reliable answers to any questions you may have. We appreciate your visit. Our platform is always here to offer accurate and reliable answers. Return anytime. Thank you for visiting Westonci.ca, your go-to source for reliable answers. Come back soon for more expert insights.