#include #include #include #include #define ID struct id struct id { char name[20]; // xing ming int num; // xue hao int age; // nian ling char sex[2]; // xing bie char xi[20]; // xi bie char zhuan[20]; // zhuan ye char add[20]; // di zhi ID *next;
Java基础,类与对象,public class Student{
public static void main(String[] args) {
//定义属性
public String name="骐程";
public int score;
//定义方法
public void study(Course c) {
score+=c.score;
System.out.println("c.score");
}
}
}