Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要制作一个 raptor 流程图,如果我输入与数字不同的字母或字符,它允许获取数字并停止。
但我不知道如何在流程图中制作它
我知道我正在使用哪个版本的 Raptor。
使用循环,将您对用户输入的请求放入其中,并将中断条件设置为“ Is_Number(variable)”,其中变量是您定义用户输入的任何内容。如果是,输入是一个数字,程序继续。如果不是,则循环继续询问。确保告诉用户只使用数字。
Is_Number(variable)
另外,如果你需要数字是一些值,你也可以将它们放入break条件中,只要你使用“and”运算符,例如“ Is_Number(variable)and variable >=0”,在这种情况下程序只有在两个输入的情况下才会继续是一个数字,如果该数字大于或等于零。
variable >=0
我希望这会有所帮助。