subject
Computers and Technology, 07.07.2020 16:01 heydisr

A bank in your town updates its customers’ accounts at the end of each month. The bank offers two types of accounts: savings and checking. Every customer must maintain a minimum balance. If a customer’s balance falls below the minimum balance, there is a service charge of $10.00 for savings accounts and $25.00 for checking accounts. If the balance at the end of the month is at least the minimum balance, the account receives interest as follows: a. Savings accounts receive 4% interest.
b. Checking accounts with balances of up to $5000 more than the minimum balance receive 3% interest; otherwise, the interest is 5%.
This Java program using Eclipse Indigo reads a customer’s account number ( int type ), account type ( char type; s or S for savings, c or C for checking), minimum balance that the account should maintain, and current balance. The program should then output the account number, account type, current balance, and new balance or an appropriate error message. Test program by running it five times, using the following data:
46728 S 1000 2700
87324 C 1500 7689
79873 S 1000 800
89832 C 2000 3000
98322 C 1000 750
[code]
import java. util.*;
public class bank
{
public static void main (String [] args)
{int num, error=1,itype=0;
char type =0;
double min, cur =0,balanc =0,rate=0;
Scanner in=new Scanner(System. in);
System. out. println("Enter account number: ");
num=in. nextInt();
while(error==1)
{
System. out. println("Enter account type(s-savings or c-checking):");
type=in. next().charAt(0);
if(type=='c'||type=='C')
{itype=1;
error=0;
rate=3/100.;
}
else if(type=='s'||type=='S')
{itype=0;
error=0;
rate=4/100.;
}
if(error==1)
System. out. println("Invalid type-re enter");
}
System. out. println("Enter minimum balance: ");
min=in. nextDouble();
System. out. println("Enter current balance: ");
cur=in. nextDouble();
balance = cur;
if(itype==1)
{ if(cur>min+5000)
rate=5/100.;
else if(cur cur-=25;
}
else
if(cur cur-=10;
cur=cur+rate*cur;
System. out. printf("After interest and fees your balance is = $%.2f\n",cur);
System. out. println("Your account number: " + num);
System. out. println("Your account type: " + type);
System. out. printf("Your starting balance: $%.2f\n ", balanc);
System. out. printf("Your new balance: $%.2f\n", cur);
}
}
[/code]

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 09:30
You wanted to look up information about alzheimer's, but you were unsure if it was spelled "alsheimer's" or "alzheimer's." which advanced search strategy would be useful? a) a boolean search b) using a wild card in your search c) trying different search engines d) doing a search for "alsheimer's not alzheimer's" asap. ill give brainlist.
Answers: 1
question
Computers and Technology, 24.06.2019 00:00
The gene form of a trait is called a(n) 
Answers: 2
question
Computers and Technology, 24.06.2019 17:30
Which computer network component connects two different networks together and allows them to communicate? a is a node (or a device) that connects two different networks together and allows them to communicate.
Answers: 2
question
Computers and Technology, 24.06.2019 18:30
Jacking is a crime that takes place when a hacker misdirects url to a different site. the link itself looks safe, but the user is directed to an unsafe page
Answers: 1
You know the right answer?
A bank in your town updates its customers’ accounts at the end of each month. The bank offers two ty...
Questions
question
Biology, 21.08.2019 00:40
question
Mathematics, 21.08.2019 00:40
question
Social Studies, 21.08.2019 00:40
question
English, 21.08.2019 00:40