CISS 110 Dialog Box
5-8. Modify exercise 2-4 where miles per gallon where calculated from the console window. Now modify the program so dialog boxes are used (use all arguments). The prompt and input will be a dialog box instead of a System.out.print() and sc.nextDouble(). The output will be a dialog box instead of a System.out.println(). The input and output will all be the same, but now in dialog boxes. Save as ex58.java and submit it.
* Exercise 2-4
* This program will calculate miles per gallon * */ import java.util.Scanner; public class ex24 { public static void main(String[] args) { double miles, gallons, mpg; // declare variables Scanner sc = new Scanner(System.in); System.out.print("Enter miles: "); // prompt miles = sc.nextDouble(); // input System.out.print("Enter gallons: "); gallons = sc.nextDouble(); mpg = miles / gallons; // calculate System.out.printf("Miles per gallon is %.1fn", mpg); // output } }
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.