gpt4 book ai didi

java - 将高度转换为英寸 (Java)

转载 作者:行者123 更新时间:2023-12-01 11:41:34 24 4
gpt4 key购买 nike

我的代码输出有问题。似乎我在我创建的方法中遗漏了一些东西......我有指示返回总英寸数。我在返回后放置 totInches 并收到错误,指出 totInches 不是变量。不确定这里缺少什么,因为我只应该创建一个方法。大部分代码都已编写,我应该创建的唯一部分是第二个 ConvertToInches 方法。有什么建议吗?

import java.util.Scanner;

public class FunctionOverloadToInches {

public static double convertToInches(double numFeet) {
return numFeet * 12.0;
}

public static double convertToInches(double numFeet, double numInches) {
return totInches * 12.0;
}

public static void main (String [] args) {
double totInches = 0.0;

totInches = convertToInches(4.0, 6.0);
System.out.println("4.0, 6.0 yields " + totInches);

totInches = convertToInches(5.9);
System.out.println("5.9 yields " + totInches);
return;
}
}

最佳答案

变量totInches未在您的函数范围内定义:

public static double convertToInches(double numFeet, double numInches) {
return totInches * 12.0;
}

您可以在此函数中使用的唯一变量是您创建的变量以及定义为形式参数的变量:numFeetnumInches。因此,您必须想出一个方程,将 numFeet 转换为英寸,同时考虑到 numInches 中提供的额外英寸。

关于java - 将高度转换为英寸 (Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29482721/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com