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. // 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( arr[i]+" : Great Job !");
  19. }else if(arr[i] <=89 && arr[i] >=80){
  20.  
  21. System.out.println(arr[i]+" : Good Job !");
  22. }
  23. else if(arr[i] <=79 && arr[i] >=70){
  24.  
  25. System.out.println(arr[i]+ " : Keep it work !");
  26. }
  27. else if (arr[i] <=69 && arr[i] >=50) {
  28. System.out.println(arr[i]+" : Work hard buddy ! ");
  29. }else {
  30. System.out.print (arr[i]+": Pls enter valid marks ");
  31. }
  32. }
  33. }
  34. }
Success #stdin #stdout 0.14s 55608KB
stdin
Standard input is empty
stdout
56 : Work hard buddy ! 
89 : Good Job !
95 : Great Job !
76 : Keep it work !