previous | start | next

Block Statement

if (amount <= balance)
{
double newBalance = balance - amount;
balance = newBalance;
}


previous | start | next