提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
System.out和System.err都表示PrintWriter的实例。
/** n o w j a v a . c o m **/ public class Main { public static void main(String[] args) { int i = 64; int j = 23; System.out.print(i); System.out.print(" and "); System.out.println(j); } }