2017-01-24 8 views
-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); 
    } 


} 
+6

のための手紙lを使用していたprintln()あるイケア

のための手紙Iを入力しましたi小文字のL、大文字のprintInではなく... –

+0

'println'の' ln'は途中で* line *を表します – shash678

答えて

1

は。あなたはそれをW printlnをだリマ

関連する問題