Итак, я пытаюсь заполнить массив символом * в определенных местах, чтобы получить шаблоны.Размер массива (строки и столбцы) одинаков и определяется пользовательским вводом.Должен быть нечетным и находиться в диапазоне от 3 до 11, поэтому, например, если положить число 5, получится массив 5 на 5.В любом случае, я пытаюсь изменить вывод, полученный от
-----------
*
*
*
*
*
----------- to get
-----------
*
*
*
*
*
----------- but instead I get
-----------
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
----------- I used 5 as the size example here in case that helps
Проблема в том, что мои циклы, кажется, работают неправильно, по крайней мере, я так думаю.Вот код
public static void main (String [] args) {
int dimension = findDimension();
char [] [] array2d = new char [dimension] [dimension];
char star = '*';
array2d = leftDiagonal(star, dimension);
print(array2d);
array2d = rightDiagonal(star, dimension);
System.out.println();
print(array2d);
}
public static int findDimension() {
int dimension = 0;
Scanner keybd = new Scanner(System.in);
do {
System.out.print("Enter an odd integer between 3 and 11 please: ");
dimension = keybd.nextInt();
} while (dimension%2 == 0);
return dimension;
}
public static void print(char [] [] arrayParam) {
for (int hyphen = 0; hyphen < (arrayParam.length*2)+1; hyphen++) {
System.out.print("-");
}
System.out.println();
for(char[] row : arrayParam)
{
for(char c : row)
System.out.print(" " + c);
System.out.printf("\n");
}
for (int hyphen = 0; hyphen < (arrayParam.length*2)+1; hyphen++) {
System.out.print("-");
}
}
public static char [] [] leftDiagonal(char starParam, int dimenParam) {
char [] [] leftD = new char [dimenParam] [dimenParam];
for (int i = 0; i < dimenParam; i++){
for (int j = 0; j < dimenParam; j++) {
if (i == j)
leftD[i][j] = starParam;
else
leftD[i][j] = ' ';
}
}
return leftD;
}
Я думаю, что проблема именно здесь, хотя это то, что решает, что сохраняется в массиве
public static char [] [] rightDiagonal(char starParam, int dimenParam) {
char [] [] rightD = new char [dimenParam] [dimenParam];
for (int i = 0; i < dimenParam; i++){
for (int j = 0; j < dimenParam; j++) {
rightD[i][j] = ' ';
// I fill all the element spaces with blanks first then put in the *
// If there's another way to do It I'd like to know
}
}
for (int i = 0; i < dimenParam; i++){
for (int j = rightD.length-1; j >= 0; j--) {
rightD[i][j] = starParam;
}
}
return rightD;
}