iing Write a program that asks for the names of three runners and the time, in minutes, it took each of them to finish a race. The program should display the names of the runners in the order that they finished.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Provide source code from what I have in attached screen shot. Put the runners and their run time together and compare them to each other to get the order of run time to get the attached assignment done.

Do not use LOOP method, please use 'if, if else' or 'boolean' for the source code. Never learned the LOOP method yet.

11. Running the Race
Write a program that asks for the names of three runners and the time, in minutes, it took
each of them to finish a race. The program should display the names of the runners in the
order that they finished.
Transcribed Image Text:11. Running the Race Write a program that asks for the names of three runners and the time, in minutes, it took each of them to finish a race. The program should display the names of the runners in the order that they finished.
race - Notepad
File Edit Format View Help
import java.util.Scanner;
public class race {
public static void main(String[] args) {
Scanner keyboard = new Scanner (System.in);
System.out.println("Runner1's name: ");
String r1 = keyboard.nextline();
System.out.println("Runner2's name: ");
String r2 = keyboard.nextline();
System.out.println("Runner3's name: ");
String r3 = keyboard.nextline();
System.out.println("Runner1's time: ");
Float t1 = keyboard.nextFloat();
System.out.println("Runner2's time: ");
Float t2 = keyboard.nextFloat();
System.out.println("Runner3's time: ");
Float t3 = keyboard.nextFloat();
}
Ln 1, Col 1
100%
Windows (CRLF)
UTF-8
Transcribed Image Text:race - Notepad File Edit Format View Help import java.util.Scanner; public class race { public static void main(String[] args) { Scanner keyboard = new Scanner (System.in); System.out.println("Runner1's name: "); String r1 = keyboard.nextline(); System.out.println("Runner2's name: "); String r2 = keyboard.nextline(); System.out.println("Runner3's name: "); String r3 = keyboard.nextline(); System.out.println("Runner1's time: "); Float t1 = keyboard.nextFloat(); System.out.println("Runner2's time: "); Float t2 = keyboard.nextFloat(); System.out.println("Runner3's time: "); Float t3 = keyboard.nextFloat(); } Ln 1, Col 1 100% Windows (CRLF) UTF-8
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 4 images

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education