我对 Java 很陌生,昨天才开始学习,这是我的班级练习,代码必须与此类似。我正在尝试用 Java 创建一个简单的登录系统。这是我收到的错误: Error:(18, 11) java: invalid start of type
我有一个朋友有类似的代码,它对他有用,但他无法具体说明为什么我的代码不起作用。
我尝试删除大括号。我尝试制作不同的 if 语句,并尝试在 read.nextLine(); 周围加上圆括号。
System.out.print("Type your username: ");
String username = reader.nextLine();
System.out.print("Type your password: ");
String password = reader.nextLine();
if (username = "Alex" && password = "mightyducks") {
System.out.print("You are now logged into the system!");
} else if (username = "Emily" && password = "cat")
System.out.print("You are now logged into the system!");
} else {
System.out.print("Your username or password was invalid!");
}
我只是想让程序显示“您现在已登录系统!” 当为 Alex 或 Emily 提供正确的密码时,并以其他方式说明:“您的用户名或密码无效!”。
德玛西亚99
qq_笑_17
相关分类