java基础(死循环退出选项)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础(死循环退出选项)相关的知识,希望对你有一定的参考价值。

java程序中为了程序正常运行,需要给无限循环加入一个退出选项,保证程序的可执行性。

import java.util.Scanner;
public class View Code {
         public static void main(String[] args) {
                  Scanner scan = new Scanner(System.in);
system.out.println("请输入您的操作选项");
int num = scan.nextInt();
switch (num) { case ‘1‘:
Scanner scan = new Scanner (System.in); System.out.println(
"请输入用户名:"); int user = scan.nextInt(); System.out.println("请输入密码:"); int password = scan.nextInt(); if(ture&&ture){ System.out.println("登陆成功"); /*继续执行下一步操作*/ }else{ System.out.println("登陆失败,请重新登录"); } case ‘2‘: system.exit(-1); default: System.out.println("无效的输入,请 重新输入"); }

 




以上是关于java基础(死循环退出选项)的主要内容,如果未能解决你的问题,请参考以下文章

STM32 硬件I2C 死循环 自动退出

猜拳游戏 java基础

c语言一个死循环中为啥执行完一个功能函数就退出了?

arm程序退出死循环

002-pythn基础-循环编码

while (cin>>str)退出死循环