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]);
}
}
}
package test;
import java.util.Scanner;
public class Score {
/**
* @參數參數
*/
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
System.out.print("該學生的成績是優");
} else if (student_score >= 80 & student_score
System.out.print("該學生的成績是良");
} else if (student_score >= 60 & student_score
System.out.print("該學生的成績是及格");
} else if (student_score >= 0 & student_score
System.out.print("該學生的成績為不及格");
} else {
System.out.print("輸入錯誤!");
}
} catch (Exception e) {
System.out.print("輸入錯誤!");
}
}
}
以上是使用Java編寫一個簡單的學生成績管理程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!