Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class CandyCount {
  2.  
  3. public static void main(String[] args) {
  4. double money = 12.4;
  5. double price = 1.2;
  6. int candies = 0;
  7.  
  8. if (money > 0 && price > 0) {
  9. while ((money - price) >= 0) {
  10. candies = candies + 1;
  11. money = money - price;
  12. }
  13. }
  14. System.out.println(candies);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement