subject

To encourage good grades, Hermosa High School has decided to award each student a bookstore credit that is 10 times the student’s grade point average. In other words, a student with a 3.2 grade point average receives a $32 credit. Create a class that prompts a student for a name and grade point average, and then passes the values to a method that displays a descriptive message. The message uses the student’s name, echoes the grade point average, and computes and displays the credit. Save the application as BookstoreCredit. java.

Must use the following code and variables:

import java. util. Scanner; //import statement allow use of Scanner class

public class BookstoreCredit
{
public static void main(String[] args)
{
//Add variables (student name, student gap and bookstore credit)
String studentName;
double studentGpa; //double declaration for student gpa (hold numbers)pg.71-72
double bookstoreCredit; //double declaration for bookstore credit (hold numbers)pg.71-72

//insert a Scanner class object declaration - pg.84 You Do It #4
//add missing scanner class here

//Add prompt for the integer value and an input statement that accepts the value pg.80
//add missing statement here

studentName = input. nextLine(); //retrieves the next line of data and returns it as a String pg.79

//Add prompt for the integer value and an input statement that accepts the value pg.80
//add missing statement here

studentGpa = input. nextDouble(); //retrieves input as a double pg.79

//bookstore credit is 10 times the student gpa
bookstoreCredit = studentGpa * 10;

//Output statement displays student’s name, echoes the grade point average, and computes and displays the credit pg.80
System. out. println(studentName + ", with a " + studentGpa + " GPA you receive a $" + bookstoreCredit + "credit!");

}

}

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 21:00
Kirk found a local community college with a two-year program and he is comparing the cost with that of an out-of-state two-year school. what is the expected total cost for one year at the local community college if kirk lives at home? what is the expected total cost for one year at the out-of-state school if kirk lives on campus?
Answers: 2
question
Computers and Technology, 22.06.2019 23:00
Which factor is the most important when choosing a website host? whether customers will make secure transactions the number of email accounts provided the purpose of the website the quality of the host control panel
Answers: 3
question
Computers and Technology, 23.06.2019 06:40
How many nibbles can be stored in a 16-bit word?
Answers: 1
question
Computers and Technology, 23.06.2019 22:20
Learning sign language is an example of a(n) learning sign language is an example of a(n)
Answers: 2
You know the right answer?
To encourage good grades, Hermosa High School has decided to award each student a bookstore credit t...
Questions
question
Mathematics, 27.05.2021 17:00
question
Mathematics, 27.05.2021 17:00
question
Mathematics, 27.05.2021 17:00
question
History, 27.05.2021 17:10
Questions on the website: 13722361