fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.io.*;
  4.  
  5. /* Name of the class has to be "Main" only if the class is public. */
  6. class Ideone
  7. {
  8. public static void main (String[] args) throws java.lang.Exception
  9. {
  10. int= 1;
  11. int $ = 2;
  12.  
  13. if (== $) {
  14. System.out.print("$ と €は同一です。");
  15. } else if (> $) {
  16. System.out.print("$ より € のほうが高いです。");
  17. } else {
  18. System.out.print("$ は € より低いです。");
  19. }
  20.  
  21. }
  22. }
Success #stdin #stdout 0.05s 2184192KB
stdin
Standard input is empty
stdout
$ は € より低いです。