import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
System.out.println("BRIGHT FUTURE TECHNOLOGIES APPLICATION");
System.out.println("Enter (1) to launch menu or any other key to exit");
int c=in.nextInt();
if (c==1){
int c2;
System.out.println("Please select one of the following menu items:");
System.out.println("(1) Capture a new product.\n(2) Search for a product\n(3) Update a product.");
System.out.println("(4) Delete a product.\n(5) Print report.\n(6) Exit Application.");
c2=in.nextInt();
}
else{
System.out.println("Thank you for using the application");
}
}
}
Comments
Leave a comment