fork download
  1.  
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7.  
  8. class Demo {
  9.  
  10. public static void main(String[] args) {
  11. int a =10, b;
  12.  
  13. System.out.println("Value of b is : "+ (b =(a ==1)?20:30));
  14. }
  15. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
Value of b is : 30