/**
*
* @author 29596
*/
class A
{
void f()
{
System.out.println("I love Java as much as I love coffee.");
}
}
public class Hello
{
public static void main(String args[])
{
System.out.println("Hello, it is very glad to learn Java.");
A a=new A();
a.f();
}
}
本文暂时没有评论,来添加一个吧(●'◡'●)