im looking to be able to change the size of the output given different inputs but when the size gets to big the spacing is off
heres my code also size is user input:
public static void point(int size){
for(int i = 1;i<=size;i++){
for(int u=1;u<=size+8;u++){
System.out.print(" ");
}
System.out.println("||||");
}
for(int n = 1;n <= size;n++){
int spaceloop =(n*-3)+12;
for (int space = 1; space <= spaceloop; space++) {
System.out.print(" ");
}
System.out.print("__/");
if(n==1){
System.out.print("||||||");
}
for(int y = 1; y<=2;y++){
if(n>1){
if(y==2){
System.out.print("||||");
}
for(int t = 1;t<=n-1;t++){
System.out.print(":::");
}
}
}
System.out.print("\\__\n");
}
}