我必須繪製使用由用戶輸入的規格長方形的周長它應該看起來像這樣繪圖與空白的長方形的周長中間
**********
* *
* *
* *
**********
地雷擁有一切的中心完整 - 我如何讓中心成爲空白空間?
這是我到目前爲止的代碼
源代碼 包lab5; 進口java.util.Scanner的;
public class Lab5 {
public static void main(String[] args) {
Scanner inputReader = new Scanner(System.in);
int i, j, width, height;
String x;
System.out.print("Enter a character: ");
x = inputReader.nextLine();
System.out.print("Enter a height: ");
height = inputReader.nextInt();
System.out.print("Enter a width: ");
width = inputReader.nextInt();
for(i = 1; i <=height; i++) {
for(j = 1; j <= width; j++) {
System.out.print(x);
}
System.out.println();
}
}
}
你能在你需要如何打印出每行字形容? – 2014-09-23 19:54:21
我需要它看起來像這樣3寬* 3高度,但只是爲了打印出不是中心的邊界 – KangarooRIOT 2014-09-23 20:00:50
也許我應該重申我的建議:用文字描述你必須在矩形的一行中打印出哪些字符。通常使用英語或您的母語來描述問題將有助於您瞭解如何解決問題。 – 2014-09-24 19:50:34