java if statement

java if statement

If statement in Java

View Answers

May 17, 2012 at 5:55 PM

if statement is used when you want to execute a block of code under any condition check. There is 4 kind of if block-

1.  Simple if Statement :
       if(test expression){
       ??.
       ?..
      }
2.   if-else statement:
      if(test expression){
       ??.
       ?..
      }
else{
?.
?
}
3.  Nested If .. else: you can also put another if with in if block.
if(test expression){
if(test expression){
          ??.
       ?..
    }
else{ 
          ??.
       ?..
   }
}
else{
          ??.
       ?..
}

4.  else if ladder:
      if(condition1){
       ?.
       }
        else if(condition2){
        ?.
       }
        else if(condition3){
         ?.
       }
       else {
       ?..
       }

Example:

   import java.util.Scanner;

   public class IfElse{
    public static void main(String [] args){
        int a=50,b;
        Scanner scanner=new Scanner(System.in);
        System.out.println("Input any number: ");
        b=scanner.nextInt();                      //input 
        if(a<b){
            System.out.println("a is less than b");
        }
        else{
            System.out.println("a is greater than b");

        }
    }
}

Description : For user input you can use Scanner object. It parses user input entered on the console or from a file. The work of Scanner is to break its input into separate tokens and then returns them one at a time.









Related Tutorials/Questions & Answers:
java if statement
java if statement  If statement in Java
Switch Statement with Strings in Java
Switch Statement with Strings in Java  Switch Statement with Strings in Java
Advertisements
if else statement in java
if else statement in java  if else statement in java explain with example
if else statement in java
if else statement in java  explain about simple if else statement and complex if else statement in java with an example
Java callable statement
Java callable statement  What is callable statement? Tell me the way to get the callable statement
JAVA statement - Java Beginners
JAVA statement  The import statement is always the first noncomment statement in a Java program file.Is it true?  Hi Friend, No,it is not true.If your class belongs to a package, the package statement should
conditional statement in java
conditional statement in java  Write a conditional statement in Java   Logical and comparison statements in OOPs are also know as conditional statements. You can learn "How to write conditional statement in Java " from
Java switch statement
Java switch statement  What restrictions are placed on the values of each case of a switch statement
GOTO Statement in java
GOTO Statement in java  I have tried many time to use java goto statement but it never works i search from youtube google but e the example on net are also give compile error. if possible please give me some code with example
If statement in java 7
If statement in java 7 This tutorial describes the if statement in java 7. This is one kind of decision making statement. There are various way to use if statement with else - If Statement :ADS_TO_REPLACE_1  If statement
Java IF statement problem
Java IF statement problem  Dear Sir/Madam i am using the following code. expected to not have any output but it still showing "welcome".. please help me why it showing "welcome". class c1 { int a=5; while(a>1
ELSE STATEMENT!! - Java Beginners
ELSE STATEMENT!!  Hi! I just want to know why doesn't my else statement works? Else statement is there in the code below which is: else JOptionPane.showMessageDialog(null, n+ " is not in the array!");//doesn't work
Switch Statement in java 7
Switch Statement in java 7 This tutorial describes the if statement in java 7. This is one kind of decision making statement. Switch Statements : The switch statement is used when you want to test many statements based on some
for statement
for statement  for(int i=0;i<5;i++); { system.out.println("The value of i is :"+i); } if i end for statement what will be the output   got the answer.. it displays only the last iteration that is "The value of i
Break Statement in java 7
Break Statement in java 7 In this tutorial we will discuss about break statement in java 7. Break Statement : Java facilitate you to break the flow... : If you want to terminate the outer statement java provides the way to do
Continue Statement in java 7
Continue Statement in java 7 In this tutorial we will discuss about continue statement in java 7. Continue Statement : Sometimes you need to skip block... statement in loops.ADS_TO_REPLACE_1 In java 7, Continue statement stops the current
Switch Statement example in Java
for understanding more about the switch statement in Java. The following java... Switch Statement example in Java        This is very simple Java program
Java - Continue statement in Java
Java - Continue statement in Java       Continue: The continue statement is used in many programming languages such as C, C++, java etc. Sometimes we do not need to execute some
Continue statement in java
Continue statement in java In this section we will discuss about continue statement in java. continue is one of the branching statement used in most of the programming languages like C,C++ and java etc. Sometime we need to skip some
Java Switch Statement
Java Switch Statement       In java, switch is one of the control statement which turns the normal flow control of the program as per conditions. It's like if-else statement but it can
Break statement in java
Break statement in java Break statement in java is used to change the normal control flow of  compound statement like while, do-while , for. Break statement is used in many languages such  C, C++  etc. Sometimes it may
I want example of Control Statement in Java
statement in Java is used to control the flow of execution of program. Here is the Examples of Control Statement in Java: Java Control Statements Java Control...I want example of Control Statement in Java  Hi, I want answer
Java Break Statement
Java Break Statement      ... is of unlabeled break statement in java. In the program break statement...; Syntax for Break Statement in Java public class Java_Break_Statement
count statement that saves results on a variable in a java bean
count statement that saves results on a variable in a java bean  ...; Statement statement = null; String SQLStr ; String retString...:3306/dev","root","anime"); statement = conn.createStatement
count statement that saves results on a variable in a java bean
count statement that saves results on a variable in a java bean  ...; Statement statement = null; String SQLStr ; String retString...:3306/dev","root","pro"); statement = conn.createStatement
For Loop Statement in java 7
For Loop Statement in java 7 In this section, we will discuss about for loop in java 7. This is one type of  loop statement. For Loop Statements : For loop is one way of looping to iterate block of code under certain condition
Java error missing return statement
Java error missing return statement       Java error missing return statement are those error in Java that occurred when a programmer forget to write
Java Error In comapitable Type in statement - Java Beginners
Java Error In comapitable Type in statement  Here I want to Check...; //Statement st; faculty3() //constructor { j=new JFrame("faculty"); j1...; PreparedStatement st; //Statement st; faculty3(){ j=new JFrame("faculty
Java - Break statement in java
Java - Break statement in java       The java programming language supports the following types... statement is used in many programming languages such as c, c++, java etc. Some
syntax error in SQL Insert Statement - Java Beginners
Access Driver] Syntax error in INSERT INTO statement. plz Help Me  Hi
syntax error in SQL Insert Statement - Java Beginners
","",""); Statement stmt=con1.createStatement(); int i
Statement block
Statement block  What is the purpose of a statement block
if statement in php
if statement in php  Correct way of writing if statement in PHP
The Switch statement
. To avoid this we can use Switch statements in Java. The switch statement is used... of a variable or expression. The switch statement in Java is the best way to test.... Here is the general form of switch statement: switch (expression){ case 1
switch statement
switch statement   i want to write a java program that computes Fibonacci,factorial,string reversal and ackerman using switch case to run as a single program
Java error unreachable statement
Java error unreachable statement   ... a code that help you in understanding a unreachable statement. For this we... statement in the code prevent from the normal execution of the code. The only
Implementing Continue Statement In Java
Implementing Continue Statement In Java       In this Session you will learn how to use continue statement. First all of define class "Continue"
prepare statement
prepare statement  sir i want example of prepare statement
difference between prepared statement and statement
difference between prepared statement and statement  i mean in prepared statement we write insert command as INSERT INTO tablename VALUES(?,?) but in normal statement we write insert into tablename(jtextfiled1.gettext
What is the difference between a break statement and a continue statement?
statement? Thanks,   Hello, In Java programming language supports 3... and return statement etc. Other-then Java programming language the break...What is the difference between a break statement and a continue statement
What is the difference between an if statement and a switch statement?
What is the difference between an if statement and a switch statement?   Hi, What is the difference between an if statement and a switch statement? Thanks,   Hi, The if statement gives options to select one option
How to extract the values of a variable in a href statement. - Java Beginners
How to extract the values of a variable in a href statement.  Hi, Here im trying to send invitations to some selected people.It is working when i...: SENDINVITE Now here i want to put a variable containing multiple e-mail ids
Switch Statement
Switch Statement  How we can use switch case in java program ?  ... switches to statement by testing the value. import java.io.BufferedReader; import... switch case statement. The program displays the name of the days according to user
sontrol statement - Java Beginners
Print a statement
Print a statement  hello what would we output for this statement System.out.println ("5"+"A" + 3);   helloADS_TO_REPLACE_1 output will be 5A3
Use if statement with LOOP statement
Use if statement with LOOP statement   ... if statement with LOOP statement. In this example we create a procedure display... Statement include  a declare keyword that define the variable and its data
cONDITIONAL STATEMENT
cONDITIONAL STATEMENT    Write a program that computes and assesses the tuition fee of the students in one trimester, based on the given mode of payment below: Plan (Key) Discount (-) or Interest (+) Cash (1) 10% Discount Two
While loop Statement.
While loop Statement.   How to Print Table In java using While Loop
Maven dependency for io.github.greycode - shardingsphere-distsql-statement version 5.3.1.2 is released. Learn to use shardingsphere-distsql-statement version 5.3.1.2 in Maven based Java projects
-distsql-statement version 5.3.1.2 java library in your project. ADS_TO_REPLACE_2... of shardingsphere-distsql-statement released The developers of   io.github.greycode - shardingsphere-distsql-statement project have released the latest
Maven dependency for io.github.greycode - shardingsphere-distsql-statement version 5.3.1.1 is released. Learn to use shardingsphere-distsql-statement version 5.3.1.1 in Maven based Java projects
-distsql-statement version 5.3.1.1 java library in your project. ADS_TO_REPLACE_2... of shardingsphere-distsql-statement released The developers of   io.github.greycode - shardingsphere-distsql-statement project have released the latest

Ads