我想在Eclipse的输出控制台上打印网格形状。
基本上我从用户那里得到一个整数,它是网格单边框中的星数。
这里是我现在的代码:
import java.util.Scanner;
public class PrintDiamond {
public static void main(String[] args) {
System.out.print("Enter the number: ");
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
num--;
for (int i=num; i>0; --i){
//Insert spaces in order to center the diamond
for (int n=0; n<i; ++n){
System.out.print(" ");
}
System.out.print(" *");
for (int n=i; n<num; ++n){
System.out.print(" + ");
System.out.print(" ");
}//Ending bracket of nested for-loop
System.out.println();
}//Ending bracket of for loop
//Print out a diamond shape based on user input
for (int i=0; i<=num; ++i){ //<= to print the last asterisk
//Insert spaces in order to center the diamond
for (int n=0; n<i; ++n){
System.out.print(" ");
}
System.out.print(" *");
for (int n=i; n<num; ++n){
System.out.print(" + ");
System.out.print(" ");
} //Ending bracket of nested for-loop
System.out.println();
} //Ending bracket of for loop
}
}
,输出为(对于int.6):
*
* +
* + +
* + + +
* + + + +
* + + + + +
* + + + +
* + + +
* + +
* +
*
答案 0 :(得分:2)
您解决方案的一些提示:
w
和n
,打印单个菱形行的方法很神奇。 这始终是一种很好的方法 - 将复杂问题减少到复杂性较低的问题 - 在这种情况下,通过创建方法并使用这些方法,例如在循环中。
在您打印单个钻石行的方法中,您需要检查您是否处于&#34;奇数&#34;或者&#34;甚至&#34;行。
答案 1 :(得分:2)
好的,这看起来像学校的校对,所以我不会写任何代码。
首先,您需要以伪代码或简单的英语来理解和写作您想要做的事情:
+
?因为现在看来你似乎没有想到任何一个。如果是这种情况,那么你的问题与Java无关,而是与基本的编程知识无关,如果我们只是为你编写算法,你将无法获得。
答案 2 :(得分:2)
以下是代码:
public static void main(String[] args) {
System.out.print("Enter the number: ");
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
final char[][] diamond = makeDiamond(num);
for (int i = 0; i < diamond.length; i++) {
for (int j = 0; j < diamond[i].length; j++) {
System.out.print(diamond[i][j]);
}
System.out.println();
}
}
public static char[][] makeDiamond(int n) {
int width = 1 + 4 * (n - 1);
int height = 1 + 2 * (n - 1);
char[][] out = new char[height][width];
int x0 = 2 * (n - 1);
int y0 = n - 1;
for (int i = 0; i < width; i += 2) {
// Top borders
int y1 = Math.abs(y0 - i / 2);
out[y1][i] = '*';
// Bottom borders
int y2 = height - Math.abs(i / 2 - y0) - 1;
out[y2][i] = '*';
if ((x0 - i) % 4 == 0) {
// Plus signs
for (int j = y1 + 1; j < y2; j++) {
out[j][i] = '+';
}
}
}
return out;
}
答案 3 :(得分:0)
著名人物的变体之一:
public static void main(String[] args) {
printDiamond(0);
printDiamond(2);
printDiamond(5);
}
static void printDiamond(int n) {
System.out.println("n=" + n);
for (int i = -n; i <= n; i++) {
for (int j = -n; j <= n; j++)
if (Math.abs(i) + Math.abs(j) == n)
System.out.print("* ");
else if (Math.abs(i) + Math.abs(j) < n && j % 2 == 0)
System.out.print("+ ");
else
System.out.print(" ");
System.out.println();
}
}
输出(组合):
n=0 | n=2 | n=5 |
---|---|---|
* |
* |
* |