Java Fundamental

Step 1:

Ask the user to enter the clock speed (in Megahertz) of their graphics card (GPU). This is an indicator of how fast their graphics card is.

Step 2:

Ask the user to enter the clock speed (in Megahertz*) of their processor (CPU). This is an indicator of how fast their processor is.

Step 3:

Ask the user to enter the number of cores that their processor (CPU) has. The more cores a processor has, the more work it can do.

Step 4:

Output the following text: "Computer Hardware Graphics Quality Recommendation Tool"

Step 5:

Display the following output (See sample Input and Output below):

- The GPU clock speed
- The CPU clock speed
- The number of cores

Sample Input and Output (user input is in bold) - The output of your program should match the formatting and spacing exactly as shown.

Please enter the clock speed (in Megahertz) of your graphics card: 1000

Please enter the clock speed (in Megahertz) of your processor: 3000

Please enter the number of cores of your processor: 2


Computer Hardware Graphics Quality Recommendation Tool

GPU Clock Speed: 1000.0 MHz

CPU Clock Speed: 3000.0 MHz

Number of cores: 2