• 我的代码运行前没有报错,可是就是运行不下去了,这是什么情况??大佬求解
  • 其它

这是什么情况啊???
我的代码如下:

import java.util.Scanner; public class 模拟QQ设置密码时检测长度 {     public static void main(String[] args) {         Scanner sc =new Scanner(System.in);         String password1="这个是初值,随便写一个即可";         int length = password1.length();         while(true) {//当字符长度在6~18之间             System.out.println("请输入密码"+"(字符长度在6~18位之间)");//              password1=sc.nextLine();             if(length<6 || length>18){                 System.out.println("密码不符合规范,请控制密码长度在6~18位之间");             }else {                 System.out.println("恭喜您,密码设定成功");                 }             sc.close();         }     } }

而且没有报错,只是在运行的时候才会跳出来


  • vicky    2020-04-26 11:24:08
  • 阅读 886    收藏 0    回答 1
  • 邀请
  • 收藏
  • 分享
发送
登录 后发表评论
  • 51testing软件测试圈微信