1. 程式人生 > >08.JAVA小程式—模擬小球下落

08.JAVA小程式—模擬小球下落

public class test4 {
	public static void main(String[] args) {
		int i,j;
		int x,y=10;
		for(x=0;x<20;x++) {
		for(i=0;i<x;i++) {
			System.out.println(" ");
		}
		for(j=0;j<y;j++) {
			System.out.print(" ");
		}
			System.out.print("O");
	}
	}
}