Conversion
Write a program that receives the environmental temperature to Celsius and converts it to Fahrenheit and display at the output.
Fahrenheit = (Celsius × 1.8) + 32
Write a program that receives the environmental temperature to Celsius and converts it to Fahrenheit and display at the output.
Fahrenheit = (Celsius × 1.8) + 32
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
da=int(input("da:")) far=((da*1.8)+32) print(far)
cs = int(input("enter Celsius: ")) fr = (cs * 1.8) + 32 print(fr)
celsius = float(input('Degree in Celsius value : '))
print('fahrenheit :',(celsius*1.8)+32)
selsiyos = int(input("enter your number:")) farenhayt = (1.8 * selsiyos) + 32 print(f"farenhayte:{farenhayt}")
degree = float(input("Please enter the ambient temperature in Celsius: ")) print("Degrees in Fahrenheit: ", (1.8 * degree) + 32,"F")
dama=float(input("enter dama:")) formul=dama*1.8 result=formul+32 print(result,"farenhot")
class Dama: def __init__(self,number): self.number=number def Solve(self): return (self.number*1.8)+32 number=float(input("enter dama:")) obj=Dama(number) print(obj.Solve(),"faranhat")
Submitting answers is currently unavailable.
Write a program that receives a number and prints the following figure according to the number received: Number: 55555 4444 333 2 2 1
Write a program that prints the number of number multiplying numbers 1 to 10
Write a program that receives a number from the user and converts to letters suppose the numbers entered between 0 and 1000000 23 ➞ Twenty Three 405 ➞ Four HundredR
Write a program that receives a solar date from the input (in the format of yyyy/mm/dd). Then convert the date to AD and print in the output
Write a program that receives a text from the user as an input and all the words used in the text, along with the number of repeating them to the user, such as: Input: This is an Example. This is a text ... ...
Write a code that uploads a video with an address (test) on the page. There are video control buttons too
You must be logged in to access this section.
Login/Sign up If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.