my Main class look like the following:
public class Main {
public static void main(String[] args)
{
Account account=new Account();
account.deposit(amount:10);
System.out.println(account.getBalance());
}
}
and Account class as below:
public class Account {
private float balance;
public void deposit(float amount){
if(amount>0)
balance+=amount;
}
}
I get an java ) expected error, which refers to the line "account.deposit(amount:10);" in Main class and hints, that amounts can not be resolved, but i dont understand why, could you give me some hint.