Search This Blog

UI/UX Design | Web Development | Mobile Application Development

Whether you need UI/ UX design, web development services, or mobile app development services, Qaabil Digitals will be more than happy to help you. We work with top software developers, designers, and project managers. We tailor our services to suit your exact needs. We closely look at your company, listen to your story, and bring about the best ideas and solutions that can help you drive solid results. We don’t just produce work that works. We produce work that matters. Get a quote now Or Talk to us

Wednesday 22 June 2011

Java program using AND operator


import java.util.*;
class usingand
{
public static void main (String arg[])
{
Scanner in = new Scanner (System.in);

int a,b,c;

System.out.print ("\n\t Enter value of a = ");
a=in.nextInt();

System.out.print ("\n\t Enter value of b = ");
b=in.nextInt();

System.out.print ("\n\t Enter value of c = ");
c=in.nextInt();

if (a>b && a>c)
System.out.println ("\n\t a is greatest ");

else if (b>a && b>c)
System.out.println ("\n\t b is greatest ");

else
System.out.println ("\n\t c is greatest ");

}
}

Note:
          In this program, once you have entered values, first statement will be executed
  • If 'a' is greater than both 'b' and 'c'
if our first condition comes false than computer will execute second statement
  • If 'b' is greater than both 'a' and 'c'
if both conditions come false than third statement will be executed automatically i.e.
"c is greatest"

No comments:

Post a Comment

Share