Go语言程序:摄氏温度转换为华氏温度
步骤
- 获取摄氏温度值并将其存储在一个变量中。
- 将其转换为华氏温度。
- 打印最终结果。
输入摄氏温度:32 华氏温度为:89.6 | 输入摄氏温度:48 华氏温度为:118.4 |
解释
- 用户首先需要输入摄氏温度值。
- 使用公式:f=(c*1.8)+32,将摄氏温度转换为华氏温度。
- 打印华氏温度。
示例
package main import "fmt" func main(){ var n int fmt.Print("Enter the temperature in Celsius:") fmt.Scanf("%d", &n) f:=(float32(n)*1.8)+32 fmt.Println("Temperature in Fahrenheit is:", f) }
输出
Enter the temperature in Celsius:32 Temperature in Fahrenheit is: 89.6
广告