Question: Please help and please read all the instructions, the shell for the program is also below. This is a simple begineer CS class using Java.

Please help and please read all the instructions, the shell for the program is also below. This is a simple begineer CS class using Java. Thank you! Please help and please read all the instructions, the shell for the

import java.util.Scanner; public class ShowInterestShell { public static void main(String[] args) { Scanner kb = new Scanner(System.in); //ask how many times do you want to use this app //get the user's input //for( 1 to count) { //call the method getInfo //call the method getInterest } } //this method calls getName, getTelephone, getAddress and out put the user's info on the screen public static void getInfo(Scanner kb) { } //this method gets the user's name and reformat it as shwn in the output, converts it to upper case and returns the result public static String getName(Scanner kb) { return ""; } //this method gets the phone number and reformat shown in the output and returns the result public static String getTelephone(Scanner kb) { return ""; } //this method gets the address and reformat shown in the output and returns the result public static String getAddress(Scanner kb) { return ""; } /*This method asks the info such as initial amount, number of years, ineterst rate, monthly deposit then calls the method printTable and passes the info needed to that method*/ public static void getInterest(Scanner kb) { } /*This program displays a description of the app */ public static void description() { } public static void printTable(double amount, int periods, double rate, double deposit) { //print the header such as Year Interest deposit new balance //output start and the initial amount //for( 1 to the number of years { //call the method getInterest //call the method round to round the calculated ineterst //calculate the balance by adding the amount , interest and deposit //call the method round to round the new balance //display the result } } /*calculate the amount of the interest deposited to the acount after each month which is amount * rate /100*/ public static double getInterest(double amount, double rate) { return 0; } //rounds the given double value to two decimal points public static double round2(double n) { return 0; } } 

CSC 15 Lab 3, Chaper 3 Write a complete program that generates the exact following output. In this program you need to prompt the user the number of hours, minutes and seconds and then output the equivalent amount in minutes and seconds and hours. Please refer to the shell provided for you for more details. Requirements: I. Must Main method can only have two lines of code. Proper indentation Proper naming Comments Logic provide the exact same o utput word by word 2. 3. 4. 5, 6. At the top of your program include the following info as comments: First name, last name Description of the program Date you created the program This program converts hours, minutes, second to second and display in on the screen. How many times do you want to use the app? 2 What is your name? Alex Patten Hi Alex Patten Lets start!! Enter the number of the hours:3 Enter the number of the minutes: 5 Enter the number of the seconds: 360 3 Hours, 5 Minutes, and 360 Seconds is: 11460 seconds 191 Minutes 0 Scoonds 3 Hours and1 Minutes and 0 Seconds What is your name? Mary Lee Hi Mary Lee Lets start!! Enter the number of the hours:5 Enter the number of the minutes: 128 Enter the number of the seconds: 728 S Hours, 128 Minutes, and 728 Seconds is: 26408 scconds 440 Minutes 8 Seoonds

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!