Gforcetest
Gforcetest
Scanner;
/* =====================================
===== Challenge 5.2 - G-Force Test =====
========================================
We need to figure out how many G's our astronauts can handle and apply a grade
of,
"Excel, Pass, or Fail" depending on what those scores are when we put them in
the
centrifuge. Write a program that asks the user to enter the G's applied when
the
astronaut candidate passes out. The program should display a grade for each
test.
It should then get the average score and display it in G's and give a total
grade.
If somehow, the astronaut makes it past 9.0 G's, the centrifuge should shut
down
automatically as it is dangerous for the astronaut to endure more than 9.0 G's
and
you should output a warning notification so that our staff can correct the
problem.
Score Grade
==================
Over 9.1 Warning
6.1-9.0 Excel
3.1-6.0 Pass
1.0-3.0 Fail
*/
public static void main(String[] args) {
}
}
}