Computer Science, asked by 251nishant, 4 months ago

Write the python code,
Given three values - Start Fahrenheit Value (S), End Fahrenheit value (E) and Step Size (W), you need to convert all Fahrenheit values from Start to End at the gap of W, into their corresponding Celsius values and print the table.

Answers

Answered by udaysunny4040
0

Answer:

it is easy.

Explanation:

while True:

choice = int(input())

if choice < 6 and choice>0:

a= int(input())

b=int(input())

if choice == 1:

print(a+b)

elif choice==2:

print(a-b)

elif chioce==3:

print(a*b):

elif choice==4:

print(a//b)

elif choice==5:

print(a%b)

elif choice==6:

break

else:

print("invalid operation")

Similar questions