Advertisement
Guest User

Untitled

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