Java是一種功能強大的編程語言,可以用于各種應用程序的開發。在學生信息管理系統中,Java語言可以實現方便的學生信息和成績錄入、查詢和處理。以下是一個可以錄入學生信息和三門成績的示例代碼。
import java.util.Scanner; public class Student { private String name; private int id; private double mathScore; private double englishScore; private double computerScore; public Student(int id, String name, double mathScore, double englishScore, double computerScore) { this.id = id; this.name = name; this.mathScore = mathScore; this.englishScore = englishScore; this.computerScore = computerScore; } public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("請輸入學生學號:"); int id = scanner.nextInt(); System.out.println("請輸入學生姓名:"); String name = scanner.next(); System.out.println("請輸入數學成績:"); double mathScore = scanner.nextDouble(); System.out.println("請輸入英語成績:"); double englishScore = scanner.nextDouble(); System.out.println("請輸入計算機成績:"); double computerScore = scanner.nextDouble(); // 創建學生對象并輸出信息 Student student = new Student(id, name, mathScore, englishScore, computerScore); System.out.println("學號:" + student.id); System.out.println("姓名:" + student.name); System.out.println("數學成績:" + student.mathScore); System.out.println("英語成績:" + student.englishScore); System.out.println("計算機成績:" + student.computerScore); } }
以上代碼中,我們首先定義了一個Student類,并在main方法中創建了一個Scanner對象,用于從控制臺獲取用戶輸入的信息。然后,我們通過Scanner對象依次獲取學號、姓名、數學、英語和計算機成績等信息,并創建一個學生對象。最后,我們通過調用學生對象的屬性來輸出錄入的信息。
通過以上代碼,我們可以方便地實現學生信息和成績的錄入。當然,這只是一個簡單的示例代碼,實際情況中還需要考慮諸如數據的保存、更新、刪除和查詢等功能,來更好地實現學生信息管理系統。
上一篇java循環奇數和