exercise3_13.java

来自「Introduction to java programming 一书中所有编程」· Java 代码 · 共 29 行

JAVA
29
字号
// Exercise3_13.javaimport javax.swing.*;public class Exercise3_13 {    public static void main(String[] args) {        // Prompt the user to enter the number of students        String numOfStudentsString = JOptionPane.showInputDialog("Enter the number of students:");        int numOfStudents = Integer.parseInt(numOfStudentsString);                String student1 = JOptionPane.showInputDialog("Enter a student name:");        double score1 = Integer.parseInt(JOptionPane.showInputDialog("Enter a student score:"));                for (int i = 0; i < numOfStudents - 1; i++) {           String student = JOptionPane.showInputDialog("Enter a student name:");           double score = Integer.parseInt(JOptionPane.showInputDialog("Enter a student score:"));           if (score > score1) {               student1 = student;               score1 = score;           }         }                    System.out.println("Top student:");        System.out.println(student1 + "'s score is " + score1);                System.exit(0);    } }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?