/1 使用Eclipse编写控制台应用程, 使用while循环在控制台打印10行10列的如下图形
□ □ □ □ □ □ □ □ □ □
■ ■ ■ ■ ■ ■ ■ ■ ■ ■
□ □ □ □ □ □ □ □ □ □
■ ■ ■ ■ ■ ■ ■ ■ ■ ■
□ □ □ □ □ □ □ □ □ □
■ ■ ■ ■ ■ ■ ■ ■ ■ ■
□ □ □ □ □ □ □ □ □ □
■ ■ ■ ■ ■ ■ ■ ■ ■ ■
□ □ □ □ □ □ □ □ □ □
■ ■ ■ ■ ■ ■ ■ ■ ■ ■/
public class test01 {
/*** @param args*/
public static void main(String[] args) {// TODO Auto-generated method stubint num=0;int i=1;while(i<=100){if(((i-1)/10)%2==0){System.out.print("\t"+"□");}else{System.out.print("\t"+"■");}//控制换行if(i%10==0){System.out.println();}i++;}
}
}