public class BankAccount { public static void main(String[] args){ double balance = 1000.75; double amountToWithdraw = 250; double updatedBalance = balance - amountToWithdraw; double amountForEachFriend = updatedBalance/3; boolean canPurchaseTicket = amountForEachFriend >= 250; System.out.println(canPurchaseTicket); System.out.println("I gave each friend "+amountForEachFriend+"..."); } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter