Creation of methods
I have a only single class and its having only one method ie., main method only.... i need to develop another method that is to reduce my switching code
package org.bankPackage.one;
import java.util.Scanner;
import java.lang.String;;
public class BankClass {
public static void main(String[] args) {
String[] names={"sandeep","deepthi","srinivas","vinay"};
String[] nums={"inc0001","inc0002","inc0003","inc0004"};
int deposite=0,withdral=0,total=0,sub=0,req=0;
int initial=500;
String name="",num="",user="",dob="",mail="",mobi="";
Scanner input =new Scanner(System.in);
System.out.println("WELCOME TO INCRESOL BANK");
System.out.println("");
System.out.println("Enter your Request");
System.out.println("\n1.Existing User\n2.New User");
System.out.println("Enter your Request");
String request=input.next();
int reqst=Integer.parseInt(request);
if (reqst==1)
{
System.out.print("User Name:");
name=input.next();
System.out.print("Account No:");
num=input.next();
if (((names[0].equals(name))&&(nums[0].equals(num)))||((names[1].equals(name))&&(nums[1].equals(num)))||((names[2].equals(name))&&(nums[2].equals(num)))||((names[3].equals(name))&&(nums[3].equals(num))))
{
System.out.println("");
System.out.println("Your INCRESOL BANK ACCOUNT Details are");
System.out.println("");
System.out.println("A/c Holder Name:"+name);
System.out.println("A/c Number:"+num);
System.out.println("");
System.out.println("Select any one of the following options");
System.out.println("\n1.Available Balance\n2.Deposite\n3.Withdrawal\n4.Logout");
System.out.println("Choose your choice :");
req=input.nextInt();
while(req<5)
{
switch(req)
{
case 1:
System.out.println("");
System.out.println("Your INCRESOL BANK ACCOUNT Details are");
System.out.println("");
System.out.println("A/c Holder Name:"+name);
System.out.println("A/c Number:"+num);
System.out.println("");
System.out.println("Your Account Available Balance is:"+initial);
System.out.println("\nSelect any one of the following options");
System.out.println("\n1.Available Balance\n2.Deposite\n3.Withdrawal\n4.Logout");
System.out.println("Choose your choice :");
req=input.nextInt();
break;
case 2:
System.out.println("");
System.out.print("Enter Deposite Ammount:");
deposite=input.nextInt();
total=initial;
total=initial+deposite;
System.out.println("");
System.out.println("After Deposite Current Ammount is:"+total);
initial=total;
System.out.println("\nSelect any one of the following options");
System.out.println("\n1.Available Balance\n2.Deposite\n3.Withdrawal\n4.Logout");
System.out.println("Choose your choice :");
req=input.nextInt();
break;
case 3:
System.out.println("");
System.out.println("Enter Withdrawal Amount:");
withdral=input.nextInt();
sub=initial;
sub=initial-withdral;
initial=sub;
System.out.println("");
System.out.println("After Withdrawal Current Ammount is :"+sub);
System.out.println("\nSelect any one of the following options");
System.out.println("\n1.Available Balance\n2.Deposite:\n3.Withdrawal:\n4.Logout");
System.out.println("Choose your choice :");
req=input.nextInt();
break;
case 4:
System.out.println("your successfully Logged out");
System.exit(req);
break;
}
}
}
else
System.out.println("\nYou enter wrong login details\nplease enter username and accountnumber\ndetails correctly");
input.close();
}
else
System.out.println("Please Enter Your Details Following Carefuuly");
System.out.println("User Name:");
user=input.next();
System.out.println("Date of Birth:");
dob=input.next();
System.out.println("Mobile Number:");
mobi=input.next();
System.out.println("Email Id:");
mail=input.next();
System.out.println("Your detials are:\n"+user+"\n"+dob+"\n"+mobi+"\n"+mail);
System.out.println("If you enter anything wrong u need to Re-Run");
}
}
View Answers
Related Tutorials/Questions & Answers:
Creation of methodsCreation of methods I have a only single class and its having only one method ie., main method only.... i need to develop another method that is to reduce my switching code
package org.bankPackage.one;
import java.util.Scanner
methodsmethods PrintStream class has two formatting
methods,what
Advertisements
methodsmethods PrintStream class has two formatting
methods,what
methodsmethods PrintStream class has two formatting
methods,what
Creation of xmlCreation of xml Hi, I need to fetch details from my database and to create a xml file containing all those datas...My database datas are in key value pair...
AppID Label Value
12345 Applicant name XXXX
12345 Masterno
static methodsstatic methods why static
methods cannot read or write the instance variables
Agile methods Agile
methods Why use Agile
methods?
This
methods focus on shorter iterations, in which the software is brought to a releasable level of quality fairly often, usually somewhere between weekly and monthly. Short
creation of installer - Java Magazinecreation of installer plz tell me how can be create installer for any developed application in java? visit the following url izpack.org..
it will helps u
exe file creation - JDBCexe file
creation hi
i have done a project in java swings.project name is format migrator.means db migrator. now my aim is create EXE FILE for my project.
pls do consider
native methodsnative methods what is native
methods in java?
A native method is a method that is implemented in a language other than Java.
The Java native method is a great way to gain and merge the power of C or C++ programming
XSD Creation. - WebSevicesXSD
Creation. When I try to generate xsd from java object. It is generating XSD file
finely. But the problem is it isgenerating XSD file elements in
alphabetical order.
can u please sujest me how can we do that one. I tried
creation of a form - JSP-Servletcreation of a form how to create a question paper using JSP code Hi Friend,
We have taken radiobuttons in our application, you can take textarea, textfield etc.
Create a table ans(ques,op1,op2,op3,op4,op5,ans
creation of database - SQLcreation of database hi,
where to and how to execute SQL queries?
Hi nanju
mysql>CREATE DATABASE search;
mysql> SHOW DATABASES;
mysql> USE search
mysql>create table Emp (fname VARCHAR(20
Random Creation of passwordRandom
Creation of password Dear Sir
I have created a form with some details in it.When clicking on the submit button it gives me a password .....Details and the password is saved in the database....The password has
xml file creation in javaxml file
creation in java how to create xml file in java so that input should not be given from keyboard. and that file should be stored.
Please visit the following links:
http://www.roseindia.net/tutorial/java/xml
Session creation and trackingSession
creation and tracking 1.Implement the information persistence across servlet
destroy or servlet container start/stop.
Write a servlet such that when it is stopped
(either by container shutdown or servlet stop
bean creation exceptionbean
creation exception hi i am getting exception while running simple spring ioc program
Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class
xml creation in javaxml
creation in java HI,
I need a java program to create an xml file...
therez a tutorial in your site to create an xml file at
http://www.roseindia.net/xml/dom/CreatXMLFile.shtmlADS_TO_REPLACE_1
but this isn't creating
Chatbox creation problemChatbox
creation problem i have one chat box in my web site and i assigned fixed position to that div.that is workin in mozill but it is not working in ie . thank you`print
("<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
PDF creation in JAVA - JSP-ServletPDF
creation in JAVA HI!
Good morning....
I want to create pdf file and i want to write something into pdf file....before
creation. Upto
creation i have done but how to write data into pdf. File Writer is not working
cache creation in java - Java Beginnerscache
creation in java Hi All,
I am planing to create cache in my web application. please send me the some sample code to create cache by using org.apache.oro.utils package. please help me out.
Thanks,
mln15584
ModuleNotFoundError: No module named 'methods'ModuleNotFoundError: No module named '
methods' Hi,
My Python... '
methods'
How to remove the ModuleNotFoundError: No module named '
methods... to install padas library.
You can install
methods python with following command
Cookie methods in jsp Cookie
methods in jsp Define cookie
methods in jsp ?
Cookie
methods :
clone()
getComment()
getDomain()
getMaxAge()
getName()
getPath()
getSecure()
getValue()
getSecure()
getVersion
java object class methodsjava object class methods What are the
methods in Object class? There are lots of
methods in object class.
the list of some
methods are as-
clone
equals
wait
finalize
getClass
hashCode
notify
notifyAll
GET and POST methods GET and POST
methods What are the differences between GET and POST
methods in form submitting, give the case where we can use GET and we can use POST
methods factory methods in java?factory
methods in java? what are factory
methods in java?
Hi Friend,
Factory
methods are static
methods that return an instance of the native class like Pattern.compile(), Calendar.getInstance
Limit the Class Object CreationLimit the Class Object
Creation
In this section you will learn about how a class object
creation can be a
restricted to a fix number of times... to restrict the object
creation of a class. This is a simple code in Java
where I have
checkbox custom tag creation in jsfcheckbox custom tag
creation in jsf how to create check box custom tags with the following functionality:
1.there must be two checkboxes
2.when the first box is checked it must populate the names of bikes,when the second
Servlet MethodsServlet
Methods
In this section we will read about the various
methods...
methods that are used to
initialize a Servlet, handles the request received..., the Servlet
methods are
called life-cycle
methods of Servlet.
Following
creation an dmanipulation of trees - Java Beginnerscreation an dmanipulation of trees Hi guys?
pls i want to find out a hind aboout what these terms or phrases means,
-To create and manipulate a Binary Search Tree
-To use the Java API's Stack in conjunction with other
abstract methods in javaabstract
methods in java what is abstract
methods in java.give better examples for understanding
Hi Friend,
Please visit the following link:
http://www.roseindia.net/java/master-java/abstract-class.shtml
Thanks
How to limit object creation in Java?How to limit the max no of objects
creation for a class?
Yes there is a way in Java for limiting the no of object
creation. In this
tutorial we are going... the objects in JVM.
In this section you will learn about how a class object
creation can
How to limit object creation in Java?How to limit the max no of objects
creation for a class?
Yes there is a way in Java for limiting the no of object
creation. In this
tutorial we are going... the objects in JVM.
In this section you will learn about how a class object
creation can