Explore Westonci.ca, the premier Q&A site that helps you find precise answers to your questions, no matter the topic. Find reliable answers to your questions from a wide community of knowledgeable experts on our user-friendly Q&A platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our 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 hope this was helpful. Please come back whenever you need more information or answers to your queries. Thank you for your visit. We're committed to providing you with the best information available. Return anytime for more. Get the answers you need at Westonci.ca. Stay informed with our latest expert advice.