Maison > Article > développement back-end > Écrire un programme sur la calculatrice EMI
Calculatrice EMI :
Un calculateur EMI vous aide à estimer facilement vos mensualités. Une fois que vous avez entré les détails nécessaires tels que le montant du prêt, la durée du prêt et le taux d'intérêt, le calculateur EMI de la banque affichera instantanément votre versement mensuel équivalant (EMI) estimé.
Pour calculer votre EMI, vous pouvez utiliser la formule suivante :
EMI = [P x R x ( 1 R )^N] / [( 1 R )^N -1]
Où :
P = Montant principal
R = Taux d'intérêt mensuel (Taux d'intérêt annuel / 12 mois)
N = Durée du prêt en mois
Exemple :
# Input the loan amount loan = int(input("Enter the loan amount: ")) # Input the loan tenure in years and convert to months tenure_year = int(input("Enter the loan tenure in years: ")) tenure_month = tenure_year * 12 # Convert years to months print("Loan tenure in months:", tenure_month) # Input the interest rate per year and convert to monthly interest rate interest_year = float(input("Enter the interest per year: ")) interest_month = interest_year / 12 / 100 # Convert annual interest rate to monthly decimal rate print("Interest per month in percentage:", interest_month) # Calculate EMI using the formula emi = loan * (interest_month * (1 + interest_month) ** tenure_month) / ((1 + interest_month) ** tenure_month - 1) # Display the calculated EMI, rounded to 2 decimal places print("EMI:", round(emi, 2))
Sortie :
Enter the loan amount:500000 Enter the loan tenure in years :10 Loan tenure in months: 120 Enter the interest per year:3.5 Interest per month in percentage: 0.002916666666666667 EMI: 4944.29
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!