Java

Banking Deposit Amount Calculation in Java

In this tutorials will teach Banking Deposit Amount Calculation in Java following these conditions.

User shall be able to choose as 200days 0r 100days option.

  • if the user select 200days option includes 20% interest rate.
  • if the user select 100days option includes 10% interest rate.

Double amount = Double.parseDouble(txtAmount.getText());
String days = (String)cboDays.getSelectedItem();
Double tot,interest;
      
if(days.equals("200"))
   {
     interest = amount * 20/100 / 365 * 200;
     txtInterest.setText(String.valueOf(interest));
     tot = amount + interest;
     txtTot.setText(String.valueOf(tot));
  } 
else if(days.equals("100"))
     {
       interest = amount * 15/100 / 365 * 100;
       txtInterest.setText(String.valueOf(interest));
       tot = amount + interest;
       txtTot.setText(String.valueOf(tot));
     }
     else
     {
        JOptionPane.showMessageDialog(null, "Something Wrong");
     }

 

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

 

admin

Recent Posts

Touchable shop Pos system using Java

The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…

1 week ago

Build Your First Responsive Login Form Using HTML and CSS FlexBox

Creating a responsive login form is a crucial skill for any web developer. In this…

1 week ago

Build Crud API with Laravel 12

In this tutorial will teach  Laravel 12 CRUD API  by step. Laravel  10 CRUD Application …

2 weeks ago

laravel 12 image upload tutorial

In this lesson we talk about laravel 12 image uploading and display the image step…

3 weeks ago

Laravel 12 CRUD Application

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

3 weeks ago

Conditional Statements in Python

Conditional statements in Python allow us to control the flow of execution based on conditions.…

2 months ago