“kod Pythona, aby przekonwertować Celsjusza na Fahrenheit” Kod odpowiedzi

Jak nawrócić Fahrenheita na Celsjusz w Pythonie


#!/usr/bin/env python
Celsius = int(raw_input("Enter a temperature in Celsius: "))

Fahrenheit = 9.0/5.0 * Celsius + 32

print "Temperature:", Celsius, "Celsius = ", Fahrenheit, " F"
Harry the Programmer

Celsjusz do Fahrenheita w Python

def farh(cel):
    return (cel *(9/5)) + 32
  while True:
c = int(input("Enter celcius to convert in farhrenhite :"))
f = farh(c)
print("Fahreheit Temperature is " + str(f))
Coding boy Hasya

Jak nawrócić Fahrenheita na Celsjusz w Pythonie

#!/usr/bin/env python
Fahrenheit = int(raw_input("Enter a temperature in Fahrenheit: "))

Celsius = (Fahrenheit - 32) * 5.0/9.0

print "Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " C"
Harry the Programmer

kod Pythona, aby przekonwertować Celsjusza na Fahrenheit

c=  int(input(" Temperature in Centigrade: "))
f= (9/5*(int(c))) +32
print(" Temperature in Fahrenheit: ", f)
MD. SHARIFUL ISLAM

Odpowiedzi podobne do “kod Pythona, aby przekonwertować Celsjusza na Fahrenheit”

Pytania podobne do “kod Pythona, aby przekonwertować Celsjusza na Fahrenheit”

Więcej pokrewnych odpowiedzi na “kod Pythona, aby przekonwertować Celsjusza na Fahrenheit” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu