Question: CS 250 Lab Exercise 08 Due: In Lab, the week of March 26th Main topics: Programmer Defined Methods Exercise This lab is designed to give

CS 250 Lab Exercise 08 Due: In Lab, the week of March 26th Main topics: Programmer Defined Methods Exercise This lab is designed to give you practice working with programmer defined methods. You will write a method named transaction to help a local banker. Your method wil need to utilize two input parameters and the method's return value (for its output Getting Started To start this exercise, you should 1. Open eclipse and start a new Java project named Lab08 2. Add a Class (named Lab08) to this project 3. Cut the program from this document and paste (replacing everything) in the Eclipse editor window Lab08. Java Comment block here .. . import java.util.Scanner public class Lab08 public static void main(String[] args) Scanner stdIn - new Scanner (System.in); double curBal-45.32; double amount System.out.print("Please enter a amount to update account by "); amount = stdIn.nextDouble(); System.out.print(" "); System.out.print("Customer's balance (before transaction) -$"); System.out.println(curBal"n"); System.out.print("Requested update amount -$"); System.out.println(amount + " "); double actAmount; actAmount - transaction(curBal, amount)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
