我是靠谱客的博主 虚心向日葵,最近开发中收集的这篇文章主要介绍JAVA第七章第一题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

7.1Write a program that reads student scores,gets the best score,and then assigns grades based on the following scheme:
Grade is A if score is>=best-10
Grade is B if score is>=best-20
Grade is C if score is>=best-30
Grade is D if score is>=best-40


import java.util.Scanner;


public class Chapter7point1 {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
Scanner input=new Scanner(System.in);
System.out.println("Enter the number of students:");
int len=input.nextInt();
int a[]=new int[len];
int best=0;
System.out.println("Enter "+len+"scores:");
for(int i=0;i<len;i++)
{
a[i]=input.nextInt();
best=a[i]>best?a[i]:best;
}
for(int i=0;i<len;i++)
	System.out.println("Student"+i+"score is"+a[i]+"and grade is"+grade(a[i],best));
	}
	public static String grade(int score,int best){
		 if(score>=best-10)
		  return "A";
		 else if(score>=best-20)
		  return "B";
		 else if(score>=best-30)
		  return "C";
		 else if(score>=best-40)
		  return "D";
		 return "F";
		 
		}
}


最后

以上就是虚心向日葵为你收集整理的JAVA第七章第一题的全部内容,希望文章能够帮你解决JAVA第七章第一题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部