以下流程图对于给定的代码是否正确?

时间:2016-01-15 06:24:03

标签: java flowchart

我在Java中设计了一个基于此代码的流程图。

public static void main(String args[]) throws IOException {
    BufferedReader bw = new BufferedReader(new InputStreamReader(System.in));
    attendance_and_student_management object = new attendance_and_student_management();
    int flag = 1;
    do {
        {
            int var = object.menu();
            if (var == 1) {
                System.out.println("\f");
                object.add_student();
                System.out.println();
            } else if (var == 2) {
                System.out.println("\f");
                object.search_student();
                System.out.println();
            } else if (var == 3) {
                System.out.println("\f");
                object.change_student_information();
                System.out.println();
            } else if (var == 4) {
                System.out.println("\f");
                object.take_attendance();
                System.out.println();
            } else if (var == 5) {
                System.out.println("\f");
                object.attendance_summary();
                System.out.println();
            } else if (var == 6) {
                System.out.println("\f");
                object.monthly_defaulter_list();
                System.out.println();
            } else if (var == 7) {
                System.out.println("\f");
                System.out.println("THANK YOU FOR USING THE PROGRAM!!");
                System.exit(0);
            } else {
                System.out.println("\f");
                System.out.println();
                System.out.println("Invalid Input. Would you like to try again? Press 1 for Yes");
                int choice1 = Integer.parseInt(bw.readLine());
                if (choice1 == 1) {
                    continue;
                } else {
                    break;
                }
            }
            System.out.println("Would you like to return to the Main Menu to perform more tasks? Press 1 for Yes and 0 for No");
            flag = Integer.parseInt(bw.readLine());
            if (flag != 1) {
                System.out.println("Are you sure you want to exit? Press 1 for Yes");
                int flag2 = Integer.parseInt(bw.readLine());
                if (flag2 == 1)
                    flag = 0;
                else
                    flag = 1;
            }
        }
    }
    while (flag == 1);
}

流程图如下:

FLOWCHART

我还在学习如何构建流程图,因此,我不确定这个图表是否正确。任何意见或建议将不胜感激。

PS:我试图让流程图更简单,请告诉我这是否比上一个更合适......

enter image description here

1 个答案:

答案 0 :(得分:1)

您在图表上的状况

  

var是否等于1,2,3,4,5,6或7?

不是100%正确。

您的程序适用于ifelse if条件,这些条件会检查每个条件序列。你首先检查1,然后是2,然后是3,那么......

您的图表将此条件显示为多合一条件,java中的含义为switch)。

因此,您的图表应显示这些if更像是这样:

If-Conditions

接下来,您不需要绘制图表框

  

执行方法

在您的代码中,您可以在真正的if条件下为该操作绘制一个框(例如我添加的图像)。

最后,你应该只有一个"退出/结束"点在图表上。阻止程序的每个流都应链接到此端点。