Hello, I created this little asci art in java, and am wondering how to implement a constant int value that can be changed to make the picture bigger/smaller etc..
these are my loops:
for(int i = 5;i>=0;i--){
for(int j = 1;j<=i;j++){
System.out.print("P");
}
for(int j = 5;j>=i;j--){
System.out.print(" ");
}
for(int j = 0;j<=i*2-1;j++){
System.out.print("M");
}
for(int j = 10;j>=i*2+1;j--){
System.out.print("\\");
}
for(int j = 5;j>=i;j--){
System.out.print(" ");
}
for(int j = 1;j<=i;j++){
System.out.print(":");
}
}