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:32pm


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:19pm
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:09pm
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 Christian Graus 478
1 Ron Beyer 306
2 Tadit Dash 253
3 samadhan_kshirsagar 229
4 OriginalGriff 198
0 Sergey Alexandrovich Kryukov 7,041
1 Prasad_Kulkarni 3,815
2 OriginalGriff 3,557
3 _Amy 3,372
4 CPallini 3,034


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