/**
* निचे दी गयी क्लास १७००० ( 17000) रुपये को ०.०७ (0.07)के ब्याज दर पर दिए गए
* क़र्ज़ के एक साल के ब्याज की फलावट करती है
* इसका उत्तर output पर प्रिंट होगा |
*/
public class Interest {
public static void main(String[] args) {
/* सबसे पहले कंप्यूटर को variables की जानकारी देना इसे अंग्रेजी में declare the variables भी कहते है */
double principal; // कितना रूपया ब्याज पर दिया है उसकी संख्या
double rate; // सालाना ब्याज दर
double interest; // सालाना ब्याज
/* यहाँ फलावट होगी */
principal = 17000;
rate = 0.07;
interest = principal * rate; // ब्याज को फल रहे है
principal = principal + interest;
// एक साल के ब्याज को मूल के साथ जोड़ रहे है .
// (Note: यहाँ कुल पैसा अब पिछले साल के पैसे से ज्यादा होगा.
// हमने पिछले साल के पैसे की जगह अब उसके जोड़ को यहाँ स्टोर कर दिया है )
/* आये हुए उतर का output */
System.out.print("The interest earned is $");
System.out.println(interest);
System.out.print("The value of the investment after one year is $");
System.out.println(principal);
} // main() function का अंत
} // class इंटेरेस्ट का अंत
No comments:
Post a Comment