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. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. int a = 1 ;
  13. int b = 1 ;
  14. int c = 1;
  15.  
  16. if(a>b){
  17. if(a>c){
  18. System.out.print("【変数a】" + a );
  19. }
  20. }else{
  21. if(b>c){
  22. System.out.print("【変数b】"+b);
  23. }if(c>b){
  24. System.out.print("【変数c】"+ c);
  25. }else{
  26. if(a == b){
  27. if(a == c){
  28. if(b == c){
  29. System.out.print("すべて同じ値です");
  30. }
  31. }
  32. }
  33. }
  34.  
  35.  
  36.  
  37.  
  38. }
  39.  
  40.  
  41. }
  42. }
Compilation error #stdin compilation error #stdout 0.1s 27788KB
stdin
Standard input is empty
compilation info
Main.java:18: error: illegal character: '\u3000'
		  System.out.print("???a?" + a?);
		                              ^
Main.java:18: error: illegal start of expression
		  System.out.print("???a?" + a?);
		                               ^
2 errors
stdout
Standard output is empty