扫描仪流程图爪哇

时间:2018-10-10 11:31:05

标签: java flowchart

由于扫描仪,我不知道如何将其转换为流程图。

import java.util.Scanner;
import java.io.*;

public class Voter {
    public static void main(String [] args) {
        System.out.print("Enter your age: ");
        int age = new Scanner(System.in).nextInt();

        if (age >= 18) {
            System.out.print("You are eligible to vote");
        }
        else {
            System.out.print("Nah, you're not allowed to vote");
        }
    }
}

1 个答案:

答案 0 :(得分:-1)

您必须使用流程图的手动输入组件。

这是您的代码图。

enter image description here