fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. static int foo() {
  11. System.out.println("foo");
  12. return 1;
  13. }
  14. static int bar() {
  15. System.out.println("bar");
  16. return 3;
  17. }
  18. public static void main (String[] args) throws java.lang.Exception
  19. {
  20. int f = 1, b = 3;
  21. int x = -1, y = -1;
  22. int temp = (f < b) ? (x=foo()) : (y=bar());
  23. System.out.println("x="+x+", y="+y);
  24. }
  25. }
Success #stdin #stdout 0.09s 320320KB
stdin
Standard input is empty
stdout
foo
x=1, y=-1