Java

Java Money Counter Calculator App

In this tutorials will teach Java Money Counter Calculator App step by step.

Paste the code inside the calculate button.

int salary = Integer.parseInt(txtSal.getText());
       int notes,coins;
       
       notes = salary / 5000;
       salary = salary % 5000;
       System.out.println("5000 notes : " + notes);
       int fivethusand = notes;
      
       notes = salary / 1000;
       salary = salary % 1000;
       System.out.println("1000 notes : " + notes);
        int thusand = notes;
       
       notes = salary / 500;
       salary = salary % 500;
       System.out.println("500 notes : " + notes);
       int fivehundred = notes;
        
       notes = salary / 100;
       salary = salary % 100;
       System.out.println("100 notes : " + notes);
        int hundred = notes;
        
       
       notes = salary / 50;
       salary = salary % 50;
       System.out.println("50 notes : " + notes);
        int fifty = notes;
        
       notes = salary / 20;
       salary = salary % 20;
       System.out.println("20 notes : " + notes);
        int twenty = notes;
       
       coins = salary / 10;
       salary = salary % 10;
       System.out.println("10 coins : " + coins);
        int ten = coins;
       
       coins = salary / 5;
       salary = salary % 5;
       System.out.println("5 coins : " + coins);
       int five = coins;
       
       coins = salary / 2;
       salary = salary % 2;
       System.out.println("2 coins : " + coins);
        int two = coins;
       System.out.println("1 coins : " + salary);
        int one = salary;
       
       
       JOptionPane.showMessageDialog(this, "5000 notes " + fivethusand+ "\n" +
                                                         "1000 notes " + thusand+ "\n" + 
                                                         "500 notes " + fivehundred+ "\n" +   
                                                         "100 notes " + hundred+ "\n" + 
                                                         "50 notes " + fifty+ "\n" +    
                                                         "20 notes " + twenty+ "\n" + 
                                                         "10 coins " + ten+ "\n" + 
                                                         "5 coins " + five+ "\n" +   
                                                         "2 coins " + two+ "\n" + 
                                                         "1 coins " + one+ "\n" 
                
                );

 

 

 

admin

Recent Posts

Laravel 11 CRUD Mastering RESTful API MVC with Repository Pattern

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

2 weeks ago

Laravel 11 CRUD Application

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

1 month ago

How to make Times Table in React

in this tutorials we will be talk about how to make a times table in…

1 month ago

Laravel Tutorial: How to Add Numbers Easily Laravel 10

In this tutorials will teach How to add two numbers in Laravel 10. (more…)

2 months ago

Build Full-Stack Node.js MongoDB CRUD App with JWT Authentication

In this tutorial, we will teach the process of building a full-stack application using Node.js,…

2 months ago

Hospital Management System using OOP Java and MySQL

In this tutorial, we will explin you through the process of building a Hospital Management…

3 months ago