- /**
- * 用星号打印交叉
- * @author michael
- * @param x 是星号的边
- */
- /*
- * *
- * *
- * *
- *
- * *
- * *
- * *
- */
- public class DaCha {
- public static void main(String[] args) {
- cha(7);
- }
- public static void cha(int x){
- for (int i = 1; i <=x; i++) {
- for (int j = 1; j <=x; j++) {
- if (j == i || j ==(x-i+1) ) {
- System.out.print("*");
- }else {
- System.out.print(" ");
- }
- }System.out.println();
-
- }
- }
- }
复制代码 |