Conversion
Write a program that receives the peripheral temperature to Celsius and converts it to Fahrenheit and display it at the output.
Fahrenheit = (Celsius × 1.8) + 32
Write a program that receives the peripheral temperature to Celsius and converts it to Fahrenheit and display it 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)
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")
# Temperature conversion program from Celsius to Fahrenheit # Receive the Celseyus temperature from the user celsius = float(input("لطفاً دمای محیطی را به سلسیوس وارد کنید: ")) # Conversion of temperature to Fahrenheit fahrenheit = (celsius * 1.8) + 32 # Display the result print(f"دمای {celsius} درجه سلسیوس برابر با {fahrenheit} درجه فارنهایت است.")
Submitting answers is currently unavailable.
Write a graphics program that has 2 fields to enter the number and 4 buttons for subtraction, multiplication and division. By selecting each button, the relevant calculations should be done on the 2 numbers entered and the result is displayed.
Write a function that receives a text and returns the first 100 characters with "..." if the text is longer than 100 characters. Otherwise it will restore the whole text unchanged.
Write a program that receives any professors including name, age and city from the entrance.
Write a function that receives infinite parameter and returns the average of numbers. If the parameter was non -extensive, it ignores it
Write a program that receives an infinite number from the user and when the user entered the number 0; Print all numbers entered from large to small in the output
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام 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.