02.08.2023
0
Like
16
Views
package Baslangic;
import java.util.Scanner;
public class UsernamePassword {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
String userName,password;
System.out.print("Kullanıcı adınızı giriniz : ");
userName = input.nextLine();
System.out.print("Şifrenizi Giriniz :");
password = input.nextLine();
if(userName.equals("Furkan") &&(password.equals("123456"))){
System.out.println("The entry was successful");
}else{
System.out.println("The entry wasn't successful");
System.out.println("şifrenizi unuttuysanız şifrenizi sıfırlayabilirsiniz");
System.out.println("şifre sıfırlamak istiyor musunuz?\n1-EVET\n2-HAYIR");
int select= input.nextInt();
switch (select){
case(1):
System.out.println("şifrenizde özel karekter bulundurmayınız.\nŞifreniz en son hatırladığınız şifre ile aynı olmamasına dikkat ediniz.");
userName= input.nextLine();
password= input.nextLine();
break;
case(2):
break;
default:
break;
}
}
}
}
You need to log in to be able to comment!