-1
シンボルメソッドprintIn(java.lang.string)を見つけることができません エラーをどうしてください、私は3つのIDESを使用しました whats wrong with printIn()
ないSystem.out.printIn()私のコードでSystem.out.printIn()が動作しない
public class Account
{
private String owner;
private int balance;
public Account (String name)
{
owner = name;
balance = 0;
}
public void deposit(int anAmount)
{
balance += anAmount;
}
public int withdraw(int anAmount)
{
int amountWithdrawn;
if (anAmount <= balance)
amountWithdrawn = anAmount;
else
amountWithdrawn = balance;
balance -= amountWithdrawn;
return amountWithdrawn;
}
public void print()
{
System.out.printIn("Owner =" + owner +" Balance=" + balance);
}
}
のための手紙
l
を使用していたprintln()
あるイケアのための手紙
I
を入力しましたi小文字のL、大文字のprintInではなく... –'println'の' ln'は途中で* line *を表します – shash678