- 博客(2)
- 收藏
- 关注
原创 利用JAVA数组模拟集合实现简单的对象数组的添加
public class Student { Student[] stu; int count; String name; int age; public Student(){ stu=new Student[5]; } public Student(String name,int age){ this.name=n
2014-09-21 12:25:27 1390
原创 用java采用for循环嵌套编写一个简单的九九乘法表
for(int i=1;i for(int j=1;j System.out.print(i+"*"+j+"="+(i*j)+" "); } System.out.print("\n"); }
2014-09-10 21:45:46 1696
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人