這就是問題所在:
創建一個IsoTri應用程序,該應用程序提示用戶輸入等腰三角形的大小,然後用該多行顯示三角形。在Java中使用循環繪製等腰三角形
實施例:4
*
**
***
****
***
**
*
的IsoTri應用程序代碼應包括printChar(int n, char ch)
方法。這種方法會將n次打印到屏幕上。
這是我到目前爲止有:
public static void main(String[] args) {
int n = getInt("Give a number: ");
char c = '*';
printChar(n, c);
}
public static int getInt(String prompt) {
int input;
System.out.print(prompt);
input = console.nextInt();
return input;
}
public static void printChar(int n, char c) {
for (int i = n; i > 0; i--) {
System.out.println(c);
}
}
我不知道如何得到它打印的三角形。任何幫助表示讚賞。
提示:例如打印* ,然後**,然後***,然後**,然後* –
這裏是你的答案http://stackoverflow.com/questions/22681510/regarding-a-star-pattern –
@KumarSaurabh他必須實現'printChar(int n,char ch)' –