14 Nov 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 } }
Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.