有沒有人可以幫我解決這個問題。我知道這可能是你可以用java編寫的最簡單的東西,但我無法想象它爲我的生活。我剛開始學習java,這讓我陷入困境。 當我編譯代碼它得到錯誤「INT不能轉換爲字符串console.printf(XY);int不能轉換爲字符串
import java.io.Console;
public class ExampleProgram {
public static void main(String[]arg) {
Console console = System.console();
console.printf("Below is a Power Calculation");
int x = 2;
int y = 2;
int xy = x * y;
console.printf(xy);
}
}
你不應該使用的toString()? – Ian
'printf(%d,xy)' –
返回錯誤:int無法取消引用 –