我将这段代码分为三部分: Main,DisSystem,DisIndexerUI。 其目的是计算不适指数。计算系统运行正常,但是我发现打印结果有问题。结果是:
input temperature
36
input humidity
42
Discomfort Index:96.75999999999999
Very very uncomfortable
It is
我认为它应该打印“非常非常不舒服”,但是我打印的结果是
Very very uncomfortable
It is
这是一个非常奇怪的情况。我想知道为什么会这样。
我当然知道,如果我这样修复它:
System.out.println("Discomfort Index:"+ ui.input());
System.out.print("It is ");
ui.status();
它将打印“这非常非常不舒服”。 我认为,但这只是一个临时解决方案。为什么换行?
public class Main {
public static void main(String[] args) {
double temp = 0;
double humidity = 0;
DisSystem dis = new DisSystem();
DisIndexerUI ui = new DisIndexerUI(dis);
System.out.println("Discomfort Index:"+ ui.input());
System.out.println("It is" + ui.status());
}
}
==================================
public class DisSystem {
public static double Formula(double temp, double humidity) {
double formula = 0.72 * (temp + humidity) + 40.6;
return formula;
}
}
=================================
import java.util.Scanner;
public class DisIndexerUI {
DisSystem disSystem;
double formula = 0;
public DisIndexerUI(DisSystem disSystem) {
this.disSystem = disSystem;
}
public double input() {
Scanner scanner = new Scanner(System.in);
System.out.println("input temperature");
double temp = Double.parseDouble(scanner.nextLine());
System.out.println("input humidity");
double humidity = Double.parseDouble(scanner.nextLine());
formula = disSystem.Formula(temp, humidity);
return formula;
}
public String status() {
String str = "";
if (formula >= 86) {
System.out.println("Very very uncomfortable");
} else if (formula >= 83) {
System.out.println("Very uncomfortable");
} else if (formula >= 80) {
System.out.println("uncomfortable");
} else if (formula >= 75) {
System.out.println("nomal");
} else if (formula >= 70) {
System.out.println("good");
} else if (formula >= 68) {
System.out.println("very good");
}
return str;
}
}
答案 0 :(得分:2)
您只需在status
方法中返回一个空字符串,但会打印实际值。
public String status() {
if (formula >= 86) {
return "Very very uncomfortable";
} else if (formula >= 83) {
return "Very uncomfortable";
} else if (formula >= 80) {
return "uncomfortable";
} else if (formula >= 75) {
return "nomal";
} else if (formula >= 70) {
return "good";
} else if (formula >= 68) {
return "very good";
} else {
return "";
}
}
进一步检查else语句中的空字符串对于您的用例是否正确。
答案 1 :(得分:1)
您正在使用 System.out.println(“ Text”); ,该功能将在打印字符串后将光标移至下一行。如果希望通过多个打印语句将字符串放在同一行中,请使用 System.out.print(“ Text”); 。
答案 2 :(得分:1)
此声明
System.out.println("It is" + ui.status());
调用 DisIndexerUI 实例 ui 的 status 成员,该成员首先打印文字和换行符,然后返回空字符串,该字符串为连接到第一个操作数,然后打印评估的“ It is” +“” 。更改DisIndexerUI的status()方法以返回文字而不是打印文字即可解决此问题。
public String status() {
String str = "";
if (formula >= 86) {
str = "Very very uncomfortable";
} else if (formula >= 83) {
str = "Very uncomfortable";
} else if (formula >= 80) {
str = "uncomfortable";
} else if (formula >= 75) {
str = "nomal";
} else if (formula >= 70) {
str = "good";
} else if (formula >= 68) {
str = "very good";
}
return str;
}
答案 3 :(得分:0)
快速修复:
用System.out.println("It is" + ui.status());
替换ui.status()
;
将System.out.print("It is ");
作为status
方法中的第一条语句。
更好的方式:遵循Thomas的建议-对问题进行评论。
编辑:
实际上,代码没有中断,其行为符合预期。
在main
方法中,将调用System.out.println("It is" + ui.status());
。这里要注意的一点是status
方法将首先执行并返回一个值。然后,返回值(该方法中声明的为空字符串)将与字符串“ It is”连接。因此,当执行跳转到status
方法时,您将根据条件打印字符串。因此,首先将打印这些字符串中的任何一个,然后返回一个值。因此,您将看到预期的输出。