练习专区
今天的一小步就是明天的一大步
Problem 1498 接口………………Java
Accepted: 10
Total Submit: 22
Time Limit: 1000ms
Memory Limit: 30720KB
Description
给你2个接口:
interface Study {
void course(String s);
}
interface Student {
void name (String n);
}
请你构造一个类,实现上述接口,并完成下列操作。
Input
输入有若干行,每行两个字符串,第一个表示名字;第二个表示课程。
Output
按样例输出。
Sample Input
Sample Output
Hint