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

Use of TERNARY operator in java program


import java.util.*;
class ternary
{
public static void main (String arg[])
{
Scanner in = new Scanner (System.in);
int a,b,c;

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

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

a==b ? c=1:c=5;
System.out.println ("\n\t c = "+c);

}
}

Note:
          After entering values, in the above program, computer will check that whether 'a' is equal to 'b' or not. If 'a' is equal to 'b' than
  • c = 1 will be displayed
Otherwise " c = 5 " will be displayed

No comments:

Post a Comment

Share