Conditional operator in java

November 14, 2016 | Author: DivyanshuBhatia | Category: N/A
Share Embed Donate


Short Description

Using Conditional Operator in Java...

Description

class Test { public static void main(String args[]) { int a , b; a = 10; b = (a == 1) ? 20: 30; System.out.println( "Value of b is : " + b );

b = (a == 10) ? 20: 30; System.out.println( "Value of b is : " + b ); } }

View more...

Comments

Copyright ©2017 KUPDF Inc.
SUPPORT KUPDF