解题思路:
注意事项:
参考代码:
import java.util.*; import java.math.*; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); String n=sc.nextLine(); Integer m=new Integer(n); Student[] s=new Student[m]; for(int i=0;i<m;i++){ s[i]=new Student(sc.next(),sc.next(),sc.next(),sc.next(),sc.next()); } for(int i=0;i<m;i++){ System.out.println(s[i]); } } } class Student{ String number; String name; String a; String b; String c; private Student(){} public Student(String number,String name,String a,String b,String c){ this.number=number; this.name=name; this.a=a; this.b=b; this.c=c; } public String toString(){ return number+","+name+","+a+","+b+","+c; } }
0.0分
1 人评分
打水问题 (C语言代码)浏览:1149 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:798 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:583 |
【计算球体积】 (C语言代码)浏览:1158 |
DNA (C语言代码)浏览:564 |
Cylinder (C语言描述+详细分析)浏览:3379 |
1128题解(返回值为数组的情况)浏览:571 |
矩形面积交 (C++代码)浏览:1205 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:654 |