Skip to main content

Posts

Showing posts from June, 2017

Bookmyshow program in java for booking the desire movie ticket

package june21; import java.util.Scanner; public class bookmyshow {  void input_details(){ System.out.println("\t\t#####  WELCOME TO THE BOOK YOUR SHOW   ####"); System.out.println(" .Please Enter the following Options"); System.out.println("   .Press 1 for  RAABTA Movie"); System.out.println("   .Press 2 for BAHUBALI 2 Movie"); System.out.println("   .Press 3 for  OK JAANU  Movie"); System.out.println("   .Press 4 for HALF GIRLFRIEND Movie"); String name,email,mobile,a;int n;float snaks;   Scanner sc = new Scanner (System.in); int choice = sc.nextInt(); while(true) { switch(choice) { case 1:  System.out.println(" \t\t\t\t*select your show timing*"); System.out.println("   .Press 1 for 12 to 3 show"); System.out.println("   .Press 2 for 3 to 6 show"); System.out.println("   .Press 3 for 6 to 9 show"); ...