Home Java Fish Inventory Shop using Java

Fish Inventory Shop using Java

56 second read
0
0
592

This tutorial will teach you  to make a small Fish shop Inventory  system using Java. The following  system will use to manage the Fish shop.

paste the code inside the ok button

 String item = txtstatus.getSelectedItem().toString();
 double fish = Double.parseDouble(txtqty.getText());
          
          if(item.equals("KG"))
          {
          double cal = (fish * 140) ; 
          txtbill.setText(String.valueOf(cal));
          
          }
         else
          {
          double cal = (fish/1000 * 140) ; 
          txtbill.setText(String.valueOf(cal));
          }

i have attached the video link below. which will do this tutorials step by step.

 

 

Load More Related Articles
Load More By admin
Load More In Java

Leave a Reply

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

Check Also

Laravel 11 CRUD Mastering RESTful API MVC with Repository Pattern

In this tutorial will teach Laravel 11 Api MVC with Repository Pattern Crud Application st…