please help with - program that continues to accept a movie name.. capacity
Hi
Could somebody help me to write program
Write a program that continues to accept a movie name (a max
of 30 characters), its ticketing capacity, and the number of the tickets sold
until the user indicates to stop. The program should display the column
headings given below, the movie name, ticketing capacity, number of tickets
sold, and number of seats available.
Sample Input and Output:
Enter a movie name: Blood Diamond
Enter its ticketing capacity: 500
Enter number of the tickets sold: 492
Additional data (Y/N)? Y
Enter a movie name: Shooter
Enter its ticketing capacity: 600
Enter number of the tickets sold: 600
Additional data (Y/N)? N
Movie/Capacity/Tickets Sold/Seats Available
Blood Diamond/500/492/8
Shooter/600/600/0
Thanks!

