fork(1) 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. // your code goes here
  13. int arr[]= {56,89,95,76};
  14.  
  15. for (int i= 0; i < arr.length ; i++ ){
  16. if(arr[i] >= 90){
  17.  
  18. System.out.println("Great Job !");
  19. }else if(arr[i] >=89 && arr[i] <=80){
  20.  
  21. System.out.println("Good Job !");
  22. }
  23. else if(arr[i] >=79 && arr[i]<=70){
  24.  
  25. System.out.println("Keep it work !");
  26. }else{
  27. System.out.println("okay ");
  28. }
  29. }
  30. }
  31. }
Success #stdin #stdout 0.1s 52636KB
stdin
Standard input is empty
stdout
okay 
okay 
Great Job !
okay