সমস্যা
একটি নির্দিষ্ট ঋণের পরিমাণের (সুদ সহ) জন্য প্রতি মাসে পরিশোধ করতে হবে এমন একটি ব্যালেন্স কিস্তি গণনা করার জন্য একটি সি প্রোগ্রাম লিখুন।
সমাধান
যখন ঋণের পরিমাণ দেওয়া হয় −
তখন সুদ গণনা করার সূত্রটি নিম্নরূপi=loanamt * ((interest/100)/12);
নিম্নলিখিত গণনা সুদের সাথে পরিমাণ দেয় -
i=i+loanamt; firstmon=i-monthlypayment; //first month payment with interest i=firstmon * ((interest/100)/12);
প্রোগ্রাম
#include<stdio.h> int main(){ float loanamt,interest,monthlypayment; float i,firstmon,secondmon; printf("enter the loan amount:"); scanf("%f",&loanamt); printf("interest rate:"); scanf("%f",&interest); printf("monthly payment:"); scanf("%f",&monthlypayment); //interest calculation// i=loanamt * ((interest/100)/12); //amount with interest i=i+loanamt; firstmon=i-monthlypayment; //first month payment with interest i=firstmon * ((interest/100)/12); i=i+firstmon; secondmon=i-monthlypayment; //second month payment with interest printf("remaining amount need to pay after 1st installment:%.2f\n",firstmon); printf("remaining amount need to pay after 2nd installment:%.2f\n",secondmon); return 0; }
আউটপুট
enter the loan amount:45000 interest rate:7 monthly payment:1000 remaining amount need to pay after 1st installment:44262.50 remaining amount need to pay after 2nd installment:43520.70