xxxxxxxxxx
celsius = float(input("Enter temperature in degrees Celsius: "))
fahrenheit = (celsius * 9/5) + 32
print(f"The temperature in Fahrenheit is: {fahrenheit}")
if fahrenheit > 100:
print("Warning: The temperature has gone above the threshold of 100 degrees Fahrenheit.")
xxxxxxxxxx
//dart
void main()
{
int temperature = 35; // temperature in celsius
print ("Today Temperature is ${(temperature*9/5)+32}F");
print ("Today Temperature is ${temperature+273.15}K");
}