Question: Use Java Write a program that reads in lines from standard input with each line containing a name and two integers and then prints a
Use Java
Write a program that reads in lines from standard input with each line containing a name and two integers and then prints a table with a column of the names, the integers, and the result of dividing the first by the second, accurate to three decimal places. You could use a program like this to tabulate batting averages for baseball players or grades for students. I Should see:
| Name 1 | 20 | 30 | 0.666 |
| Name 2 | 10 | 35 | 0.333 |
| Name 3 | 20 | 100 | 0.200 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
