Home Free Projects Java Simple Movie Ticket System Project

Java Simple Movie Ticket System Project

46 second read
0
2
2,075

The Movie Ticket System system is developed using JavaThis project is suitable for java beginners who wants to improve java skills.

Paste the code Inside the Add Button

 txtcount.setText("");
        
 int numbers = Integer.parseInt(txtticket.getText());
        
        
 int tot = numbers * 20;
        
 txttotal.setText(String.valueOf(tot));
        
        
 for(int x=1; x <= numbers; x ++)
        {

           txtcount.setText(txtcount.getText()+"Your Ticket No " + x + "\n" );

        }

 

Load More Related Articles
Load More By admin
Load More In Free Projects

Leave a Reply

Your email address will not be published. Required fields are marked *

Check Also

Creating a Calculator in WPF with C# – Step-by-Step Tutorial

In this tutorials will teach how to make a calculator using wpf C# application step by ste…