public class Imooc {
public String show(String name){
return "欢迎您,"+name+"!";
}
//完成 main 方法
public static void main(String[] args) {
Imooc hello=new Imooc();
hello.show("爱慕课");
}
}
添加回答
举报
0/150
提交
取消