Java教程

Java打印图案6

用于打印以下模式的Java程序

程序:

public class pattern{
    public static void main(String []args){
        int matrix[][]=new int[5][5];
        int i,j,k,l;
        int direction=1;
        for(i=0;i<5;i++){
            for(j=0;j<5;j++){
                matrix[i][j]=0;
            }
        }
        for(i=1,j=0,k=0;i<=16;i++){
            matrix[j][k]=i;
            switch(direction){
                case 1:if(k+1<5){
                    if(matrix[j][k+1]==0){
                        k++;
                        continue;
                    }
                    else{
                        j++;
                        direction=2;
                        continue;
                    }
                }
                else{
                    j++;
                    direction=2;
                    continue;
                }
                case 2:if(j+1<5){
                    if(matrix[j+1][k]==0){
                        j++;
                        continue;
                    }
                    else{
                        direction=3;
                        k--;
                        continue;
                    }
                }
                else{
                    direction=3;
                    k--;
                    continue;
                }
                case 3:if(k-1>=0){
                    if(matrix[j][k-1]==0){
                        k--;
                        continue;
                    }
                    else{
                        direction=4;
                        j--;
                        continue;
                    }
                }
                else{
                    direction=4;
                    j--;
                    continue;
                }
                case 4:if(j-1>=0){
                    if(matrix[j-1][k]==0){
                        j--;
                        continue;
                    }
                    else{
                        k++;
                        direction=1;
                        continue;
                    }
                }
                else{
                    k++;
                    direction=1;
                    continue;
                }
            }
        }
        for(i=0;i<5;i++){
            for(j=0;j<5;j++){
                if(matrix[i][j]==0){
                    System.out.print("\t");
                }
                else{
                    System.out.print(matrix[i][j]+"\t");
                }
            }
            System.out.println("");
        }
    }
}
输出:
Java程序打印以下模式
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4