Showing posts with label Basic Program in Java. Show all posts
Showing posts with label Basic Program in Java. Show all posts

32 Switch case statement in Java

Syntax: switch( expression ) {       case value1 :  statements                            break;       default : statement; } Pr...
Read More

31 If Else If ladder in Java

Syntax: if( condition) {       statements; } else if( condition ) {        statements; } else if( condition ) {        stateme...
Read More

30 Nested If else in Java

Synatax:  if( conditon ) {       Statements;               if( condition ){         }         else         {          } } el...
Read More

29 If else statement in Java

Syntax:            if( condion ){                  Statements;            }            else{                 Statements;            ...
Read More

27 If statement in Java

Syntax:              if(condition) statement; In this program we compare two numbers and find largest ones/greatest ones/max ones. 3IF...
Read More

26 Program to print value of a variable

In this program we will create a variable and assign it value. 2Variable.java class Variable{ public static void main(String args[]...
Read More

25 A First Simple Program in Java

1First.java /* This is a simple Java Program Call this file "1First.java" */ class First{ // Your program begins with ...
Read More