fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args)
  4. {
  5. int score = 100; // 成績
  6.  
  7. if(score >= 78) {
  8. System.out.println("合格です!");
  9. }
  10. }
  11. }
Success #stdin #stdout 0.06s 32652KB
stdin
Standard input is empty
stdout
合格です!