题目描述 依次输入一个学生的学号,以及3科(C语言,数学,英语)成绩,在屏幕上输出该学生的学号,3科成绩。 输入描述: 学号以及3科成绩,学号和成绩之间用英文分号隔开,成绩之间用英文逗号隔开。 输出描述: 学号,3科成绩,输出格式详见输出样例。 示例1 输入 17140216;80.845,90.55,100.00 输出 The each subject score of No. 17140216 is 80.85, 90.55, 100.00. import java.util.Scanner; public class Bc10 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int score1 = sc.nextInt(); int score2 = sc.nextInt(); int score3 = sc.nextInt(); System.out.println("score1=" + score1 + "," + "score2=" + score2 + "," + "score3=" + score3); } }