定义一个变量保存华氏温度,华氏温度转换摄氏度的公式为:59*(华氏温度-32),求出华氏温度对应的摄氏温度。 知识点: golang 中, float浮点型 可以表示小数 golang中 ,算术运算符"+","-","*","" 分别表示加,减,乘,除
示例1
输入
100.0
输出
37.77778
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ public double temperature (double f) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ double temperature(double f) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param f double浮点型 华氏温度 # @return double浮点型 # class Solution: def temperature(self , f ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ public double temperature (double f) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ function temperature( f ) { // write code here } module.exports = { temperature : temperature };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param f double浮点型 华氏温度 # @return double浮点型 # class Solution: def temperature(self , f: float) -> float: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ func temperature( f float64 ) float64 { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ double temperature(double f ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param f double浮点型 华氏温度 # @return double浮点型 # class Solution def temperature(f) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ def temperature(f: Double): Double = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ fun temperature(f: Double): Double { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ public double temperature (double f) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ export function temperature(f: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ func temperature ( _ f: Double) -> Double { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param f double浮点型 华氏温度 * @return double浮点型 */ pub fn temperature(&self, f: f64) -> f64 { // write code here } }
100.0
37.77778