this is what I have so far
HTML Code:
public class Course
{
private String courseCode;
private String courseName;
private
private int count
roster Student[] // Array of Students in the course
|
Newbie Member
|
|
| 8May2010,07:59 | #1 |
|
Hello I am writing a course class:
this is what I have so far HTML Code:
public class Course
{
private String courseCode;
private String courseName;
private
private int count
roster Student[] // Array of Students in the course |
|
Contributor
|
|
| 12May2010,11:31 | #2 |
|
You may use the array of the the record of the studentcourse and also by implementing list you can do within better format,
Code are following: Code:
import java.util.Arrays;
import java.util.List;
public class course
{
public static void main(String[] arg)
{
String[] coursename = {"B.tech", "MBA", "MCA"};
List<String> courseList = Arrays.asList(coursename);
for(String courses : courseList)
{
System.out.println(students);
}
}
}
|