Click here to Skip to main content
Sign Up to vote bad
good
See more: JavascriptJava
import java.util.Scanner;
import java.util.Formatter;
 

public class Assingment3 {
 

    public static void main(String[] args) {
      Scanner in = new Scanner(System.in);
     final double basic = 0.025;
     final double premium = 3.5;
     final double platinum = 4.5;
      System.out.println("Welcome to CSE110 Bank:");
      System.out.println("What is your name?:");
      String name = in.next();
      System.out.println("Initial deposit into savings:");
      double savings=in.nextDouble();
      System.out.println("Initial deposit into checkings:");
      double checking=in.nextDouble();
      double total = savings+checking;
      System.out.println("Bank options:");
 
      int choice1 = in.nextInt();
      if (choice1 ==1)
      {
 
      }
      else if (choice1==2)
      {
 
      }
      else if (choice1 ==3)
      {
 
      }
      else if (choice1 == 4)
      {
 
      }
     System.out.println("your choice:  "+choice1);
      System.out.println(name+"'s "+"account balance: "+total+"(S:"+savings+"C:"+checking+")" );
      int choice2 = 4;
      switch(choice2)
              {
          case 1:
 
          case 2:
 
          case 3:
 
          case 4:
 

              }
    }
}
Posted 28 Sep '12 - 13:32


1 solution

You don't. Your logic will automatically fall through to the switch part of your code after any of the if/else if blocks are executed.
One thing that is odd, however, is that you have int choice2 = 4; hardcoded. I'm pretty sure that you'll want to change that.
  Permalink  
Comments
Sergey Alexandrovich Kryukov - 28 Sep '12 - 21:19
Not sure OP is ready to get how to do it right, but the answer still gets 5. --SA
Marcus Kramer - 28 Sep '12 - 22:09
Thanks.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 211
1 Richard MacCutchan 145
2 Sergey Alexandrovich Kryukov 134
3 Tadit Dash 124
4 Santhosh G_ 120
0 Sergey Alexandrovich Kryukov 10,338
1 OriginalGriff 7,965
2 CPallini 4,201
3 Rohan Leuva 3,522
4 Maciej Los 3,159


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 28 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid