Before:

// Paying a credit card bill
if( balance >= minPayment )
{
   balance -= minPayment;
}
else
{
}