我遇到格式说明符问题。这是否意味着我正在使用的%d?
public static void main(String[] args)
{
double y, x;
for (x = 1.0; x <= 7.0; x+=0.1)
{
y = x * x - 5 * x + 6;
System.out.printf("x = "+x+", y = %d", y);
System.out.printf("\n");
}
}
这就是代码,这里是输出:
Exception in thread "main" java.util.IllegalFormatConversionException: d != java.lang.Double
x = 1.0, y = at java.util.Formatter$FormatSpecifier.failConversion(Formatter.java:4045)
at java.util.Formatter$FormatSpecifier.printInteger(Formatter.java:2748)
at java.util.Formatter$FormatSpecifier.print(Formatter.java:2702)
at java.util.Formatter.format(Formatter.java:2488)
at java.io.PrintStream.format(PrintStream.java:970)
at java.io.PrintStream.printf(PrintStream.java:871)
at wilson_hw03a.java.Wilson_hw03aJava.main(Wilson_hw03aJava.java:15)
Java Result: 1
我究竟做错了什么?更好的是,错误是什么?
答案 0 :(得分:5)
没有&#34; NetBeans&#34;错误,程序中存在Java错误。您在printf语句的错误部分中有一个格式说明符。在分隔方法参数的逗号之前,它需要在String中作为第一个参数的一部分。所以不是这样:
System.out.printf("x = "+x+", y = %d", y);
而是这个:
System.out.printf("x = %d, y = %d", x, y);
或者如果你想要一个新行:
System.out.printf("x = %d, y = %d%n", x, y);
请注意,在printf或String.format(...)语句中,对新行使用%n
而非\n
。
答案 1 :(得分:5)
我刚注意到另一个问题。 double的格式说明符是%f
而不是%d
。它还可能导致FormatSpecifier
错误。
public static void main(String[] args) {
double y, x;
for (x = 1.0; x <= 7.0; x += 0.1) {
y = x * x - 5 * x + 6;
System.out.printf("x = %f, y = %f", x, y); // or
System.out.printf("x = %f, y = %f%n", x, y);
}
}