Skip to content

Commit

Permalink
Merge pull request #52 from divyashukla18/patch-1
Browse files Browse the repository at this point in the history
pattern program.java
  • Loading branch information
Ayu-hack authored Oct 3, 2024
2 parents c614b19 + f75718a commit 207391a
Showing 1 changed file with 109 additions and 0 deletions.
109 changes: 109 additions & 0 deletions pattern program.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
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("");
}
}

0 comments on commit 207391a

Please sign in to comment.