public class MyClass {
public static void main() {
// Your algorithm goes here.
int x = 100;
int y = 200;
double z = 36.75;
//---------class type
Student aa = new Student();
Student cindy = new Student();
aa.studName="AA";
cindy.studName="Cindy";
}
}
public class Student{
int studNo;
String studName;
double studHeight;
double studWeight;
char studGender;
}