标签:
public class Test {// 定义类
public static void main(String[] args) {// 主函数,程序的入口
for (int i = 1; i <= 100; i++) {
System.out.print(i + " ");
}
}
}
标签:
原文地址:http://www.cnblogs.com/x-lei/p/5424519.html