输入一个正整Erepeat (o


 

代码:

 1 import java.util.*;  2 public class Main {  3     public static void main (String [] args) {  4         int repeat,score;  5         Scanner s=new Scanner(System.in);  6         repeat=s.nextInt();  7         for(int i=1;i<=repeat;i++) {  8             score=s.nextInt();  9             if(score<60) { 10                 System.out.println("Fail"); 11  } 12             else { 13                 System.out.println("Pass"); 14  } 15  } 16  } 17 }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM