06-Task-Performance-1-ARG
06-Task-Performance-1-ARG
File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
while (true) {
System.out.println("Select an option:");
System.out.println("1. Register");
System.out.println("2. Login");
System.out.println("3. Exit");
System.out.print("Enter your choice: ");
int choice = scanner.nextInt();
switch (choice) {
case 1:
register(scanner);
break;
case 2:
login(scanner);
break;
case 3:
System.out.println("Exiting program...");
System.exit(0);
default:
System.out.println("Invalid choice. Please enter a number
between 1 and 3.");
}
}
}