mber of stars remaining. Use A loop. Please Write the code in Java and use the test ca

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

At a coffee shop , a coffee cost $1. Each coffee you purchase, earns one star. Seven stars earns a free coffee. In turn, that free coffee earns another star. Ask the user how many dollars they will spend, then output the number of coffees that will be given and output the number of stars remaining. Use A loop. Please Write the code in Java and use the test case examples as reference.

### Test Case 12

**Prompt:** How many dollars will you spend?  
**Input:** 25 [ENTER]  
**Output:**  
- Coffees: 29  
- Stars remaining: 1  

---

### Test Case 13

**Prompt:** How many dollars will you spend?  
**Input:** 38 [ENTER]  
**Output:**  
- Coffees: 44  
- Stars remaining: 2  

---

### Test Case 14

**Prompt:** How many dollars will you spend?  
**Input:** 50 [ENTER]  
**Output:**  
- Coffees: 58  
- Stars remaining: 2  

---

### Test Case 15

**Prompt:** How many dollars will you spend?  
**Input:** 38654 [ENTER]  
**Output:**  
- Coffees: 45096  
- Stars remaining: 2  

--- 

These test cases demonstrate the relationship between dollars spent and the corresponding number of coffees and remaining stars in a hypothetical scenario.
Transcribed Image Text:### Test Case 12 **Prompt:** How many dollars will you spend? **Input:** 25 [ENTER] **Output:** - Coffees: 29 - Stars remaining: 1 --- ### Test Case 13 **Prompt:** How many dollars will you spend? **Input:** 38 [ENTER] **Output:** - Coffees: 44 - Stars remaining: 2 --- ### Test Case 14 **Prompt:** How many dollars will you spend? **Input:** 50 [ENTER] **Output:** - Coffees: 58 - Stars remaining: 2 --- ### Test Case 15 **Prompt:** How many dollars will you spend? **Input:** 38654 [ENTER] **Output:** - Coffees: 45096 - Stars remaining: 2 --- These test cases demonstrate the relationship between dollars spent and the corresponding number of coffees and remaining stars in a hypothetical scenario.
Expert Solution
Step 1

Code:

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.println("How many Dollars will you spend?:");
        int dollars = in.nextInt();
        int coffees = dollars;
        int stars = dollars;
        while (stars >= 7) {
            coffees += stars / 7;
            stars = (stars % 7) + (stars / 7);

        }
        System.out.println("Coffees: " + coffees);
        System.out.println("Stars remaining: " + stars);
    }
}

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education