Computers and Technology

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!");

}

}

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 10:00, ozzy55
Create a word problem that involves calculating the volume and surface area of a three-dimensional object. cube: surface area 6 s2 , volume s3
Answers: 3
image
Computers and Technology, 23.06.2019 06:40, sardarp1irc5
What are the three uses of a screw?
Answers: 2
image
Computers and Technology, 24.06.2019 18:30, kristine2424
Is a type of bullying that takes place when a person intentionally posts negative information about another that is not true
Answers: 1
image
Computers and Technology, 24.06.2019 21:30, zlyzoh
Write an algorithm to check if a number is even or odd and show with flow chart step by step
Answers: 2
Do you know the correct answer?
To encourage good grades, Hermosa High School has decided to award each student a bookstore credit t...

Questions in other subjects:

Konu
Mathematics, 25.02.2021 22:00
Konu
Mathematics, 25.02.2021 22:00
Konu
Mathematics, 25.02.2021 22:00
Konu
Chemistry, 25.02.2021 22:00