商城首页欢迎来到中国正版软件门户

您的位置:首页 > 软件教程 >如何用Java编写一个简单的学生成绩程序

如何用Java编写一个简单的学生成绩程序

  发布于2025-01-12 阅读(0)

扫一扫,手机访问

谁知道这个程序用java如何编写题目用java编写一个简单的学生成绩

谁知道这个程序用java如何编写题目用java编写一个简单的学生成绩

import java.io.*;

public class Test

{

public static void main(String[] args) throws Exception

{

int n;

float[] s;

BufferedReader br=new BufferedReader(new InputStreamReader(System.in));

String [] strs;

System.out.print("请输入学生人数:");

n=Integer.parseInt(br.readLine());

s=new float[3*n];

for(int i=0;i {

System.out.print("请输入第"+(i+1)+"个学生的3门课程的成绩,以空格分隔:");

strs=br.readLine().trim().split("\\s+");

s[3*i]=Float.parseFloat(strs[0]);

s[3*i+1]=Float.parseFloat(strs[1]);

s[3*i+2]=Float.parseFloat(strs[2]);

// System.out.println(""+s[3*i]+" "+s[3*i+1]+" "+s[3*i+2]);

}

System.out.println("你输入的"+n+"个学生的成绩是:");

for(int i=0;i {

System.out.println(""+s[i]+" "+s[i+1]+" "+s[i+2]);

}

}

}

JAVA代码。题目如下成绩满分为100分学生成绩记为x

package test;

import java.util.Scanner;

public class Score {

/**

* @param args

*/

public static void main(String[] args) {

try {

Scanner student_score_input = new Scanner(System.in);

System.out.print("请输入学生的成绩: ");

int student_score = student_score_input.nextInt();

if (student_score >= 90 & student_score <= 100) {

System.out.print("该学生的成绩是优");

} else if (student_score >= 80 & student_score < 90) {

System.out.print("该学生的成绩是良");

} else if (student_score >= 60 & student_score < 80) {

System.out.print("该学生的成绩是及格");

} else if (student_score >= 0 & student_score < 60) {

System.out.print("该学生的成绩是不及格");

} else {

System.out.print("输入错误!");

}

} catch (Exception e) {

System.out.print("输入错误!");

}

}

}

本文转载于:https://www.docexcel.net/show/24_142766.html 如有侵犯,请联系admin@zhengruan.com删除

热门关注