.NET程序员学Java笔记[1]-Test

/**
 * 
 */
package net.io99;

import java.io.IOException;

/**
 * @author ASUS
 * 
 */
public class Test {

	/**
	 * @param args
	 * @throws IOException
	 */
	public static void main(String[] args) throws IOException {
		System.out.println("test");
		System.in.read();

	}

}
 

你可能感兴趣的:(java,.net)