因此,此程序仅打印基本的居中三角形。用户输入他们希望三角形包含多少行。我只是不确定如何插入错误消息并以此退出程序。在不打扰任何事情的情况下最好的方法是什么?

导入java.util.Scanner;

公共课Triangle {

public static void main(String[] args) {
    // TODO Auto-generated method stub

    System.out.print("Enter the number of lines: ");
    Scanner input = new Scanner(System.in);
    int numLines = input.nextInt();

    for (int i = 0; i < numLines; i++)
    {
        for (int j = 0; j <= numLines - i; j++)
        {
            System.out.print(" "); //prints the proper number of spaces so that it's centered
        }

        for (int k = 0; k <= 2*i; k++)
        {
            System.out.print("*"); //prints proper number of *
        }

        System.out.println(); //makes new row
    }

}


}

最佳答案



int numLines = input.nextInt();


您添加

if (numlines <= 0)
   return;

关于java - 如果输入<1,如何使程序声明错误并退出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49039455/

10-10 14:00