C++의 이자 계산기
5195 단어 cpp
C++의 이자 계산기 시스템
#include<iostream>
#include<cmath>
#include<string>
using namespace std;
float simple_interest(float a, float b, int c){
float si = (a*b*c)/100;
return si;
}
float compound_interest(float x, float y, int z){
float ci = x*pow((1+y/100),z)-x;
return ci;
}
int main(){
float p, r;
int t;
string m;
cout<<"Enter your Principal Amount: ";
cin>>p;
cout<<"Enter your Rate of Interest: ";
cin>>r;
cout<<"Enter your Time: ";
cin>>t;
cout<<"****************"<<endl;
cout<<"Type of Interest(s for SI and c for CI): ";
cin>>m;
if(m=="c"){
cout<<"Compound Interest is: "<<compound_interest(p,r,t);
}
else if(m=="s"){
cout<<"Simple Interest is: "<<simple_interest(p,r,t);
}
else{
cout<<"Please select between SI & CI";
};
return 0;
}
Reference
이 문제에 관하여(C++의 이자 계산기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/madhubankhatri/interest-calculator-in-c-52k1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)