Home Free Projects Java Simple Movie Ticket System Project

Java Simple Movie Ticket System Project

46 second read
0
2
2,014

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

Laravel 11 CRUD Application

In this tutorial will teach Laravel 11 CRUD Application step by step. Laravel  11 CRUD App…