问题及代码:
/*
*烟台大学 计控学院 李楠
*2015/9/5
*问题:输出 Welcome to Java,Welcome to Computer Science,Programming is fun
*/
public class Welcome
{
public static void main(String[] args)
{
// TODO 自动生成的方法存根
System.out.println("Welcome to Java");
System.out.println("Welcome to Computer Science");
System.out.println("Programming is fun");
}
}
运行结果:
知识点总结:
简单的格式训练。