ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 12 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 25 Apr 2017 My Price 8.00

Write a java program that generates a random number

I'm new to programming and need help with this.

 

Write a java program that generates a random number between 50 and 100 for a student grade and determines the letter grade of the student. The student grade is determined based on the following criteria:

90-100       A

80-89        B

70-79        C

60-69        D

Less than 60   F

In your program, you can use the following statement to generate a random number between 50 and 100

int grade = (int)(Math.random() * 50) + 50;

 

Use a loop to to generate 5 random grades and output the letter grade for each. The output of your program should be similar to:

Student grade is 73 which is a C.

Student grade is 52 which is a F.

Student grade is 90 which is a A.

Student grade is 88 which is a B.

Student grade is 82 which is a B.

Answers

(11)
Status NEW Posted 25 Apr 2017 01:04 AM My Price 8.00

-----------

Not Rated(0)