Comment on Tutorial - Nested if in java By aathishankaran
Comment Added by : Amitava Misra
Comment Added at : 2009-11-03 06:11:33
Comment on Tutorial : Nested if in java By aathishankaran
//EXAMPLE OF NESTED IF*****
//FIND OUT BIGER NUMBER AMONG 3 NUMBERS
package demo1if;
/**
*
* @author Amitava
*/
public class conif {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int i,j,k;
i=5;
j=45;
k=3;
if(i>j){
if(i>k){
System.out.println(i+"is big");
}else{
System.out.println(k+"is Big");
}
}else{
if(j>k){
if(j>i){
System.out.println(j+ "is bIg");
}else{
System.out.println(i+"i is biG");
}
}
}
// TODO code application logic here
}
}
View Tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program
MultiLevel Inheritance sample in Java
Archived Comments
1. Please give me a example of regionMatches().
View Tutorial By: A. K. M. Saleh Sultan at 2009-10-05 14:52:25
2. i see that lots of people get this exception : jav
View Tutorial By: oded at 2008-09-28 03:33:33
3. Nice Blog
View Tutorial By: RAKESH KUMAR at 2015-08-04 10:07:50
4. ok good.But what about plug-in's Information.
View Tutorial By: Ramarao at 2010-01-31 07:32:02
5. Easy and Wonderfulimple Example...to undersatnd th
View Tutorial By: Chaitanya at 2010-04-04 02:27:04
6. nice one superb..
View Tutorial By: Rajesh B at 2011-02-01 21:59:56
7. hi could u tell me how to download a file using se
View Tutorial By: akki at 2013-02-19 05:52:03
8. your second last example in above code (Character
View Tutorial By: jyoti at 2011-11-06 17:01:19
9. You have clear my confusion by using simple codes!
View Tutorial By: salahu.kt at 2010-09-28 07:33:55
10. Awesome tutorial
View Tutorial By: Anonymous at 2012-12-13 06:50:36