SlideShare a Scribd company logo
1 of 8
Download to read offline
//Java program for cash reserve ratio
/**
* The java program ReserveRatio that prints the loan amount of
* deposit of 1000 and fixed ratio of 0.1 to console.
* */
//ReserveRatio.java
public class ReserveRatio {
public static void main(String[] args) {
//set deposit
double D=1000;
//set reserve ration to 0.1
double F=0.1;
//start N=1
int N=1;
//Set default values
double R=0;
double L=0;
double TD=0;
double TR=0;
double TL=0;
//subtract reserve from deposit and set to loan
L=D-R;
double reserve=F;
System.out.printf("%-20s%-10.2f ","Initial, D: ",D);
System.out.printf("%-20s%-10.1f ","Reserve ration, F: ",F);
System.out.printf("%-5s%8s%10s%10s%10s%10s%10s ",
"N","D-eposit","R-eserve","L-oan","Total-D","Total-R","Total-L");
//Run while loop until loan is <1
while(L>1)
{
//calculate Reserve on deposit
R=reserve*D;
//add deposit to total deposit
TD=D+TD;
//add R to TR
TR+=R;
//subtract deposit from R and set to loan,L
L=D-R;
//Add loan to total loan
TL+=L;
//print values to console
System.out.printf("%-5d%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f ",
N,D,R,L,TD,TR,TL);
//set loan to deposit,D
D=L;
//increment N by one
N++;
}
}
}
Sample output:
Initial, D: 1000.00
Reserve ration, F: 0.1
N D-eposit R-eserve L-oan Total-D Total-R Total-L
1 1000.00 100.00 900.00 1000.00 100.00 900.00
2 900.00 90.00 810.00 1900.00 190.00 1710.00
3 810.00 81.00 729.00 2710.00 271.00 2439.00
4 729.00 72.90 656.10 3439.00 343.90 3095.10
5 656.10 65.61 590.49 4095.10 409.51 3685.59
6 590.49 59.05 531.44 4685.59 468.56 4217.03
7 531.44 53.14 478.30 5217.03 521.70 4695.33
8 478.30 47.83 430.47 5695.33 569.53 5125.80
9 430.47 43.05 387.42 6125.80 612.58 5513.22
10 387.42 38.74 348.68 6513.22 651.32 5861.89
11 348.68 34.87 313.81 6861.89 686.19 6175.70
12 313.81 31.38 282.43 7175.70 717.57 6458.13
13 282.43 28.24 254.19 7458.13 745.81 6712.32
14 254.19 25.42 228.77 7712.32 771.23 6941.09
15 228.77 22.88 205.89 7941.09 794.11 7146.98
16 205.89 20.59 185.30 8146.98 814.70 7332.28
17 185.30 18.53 166.77 8332.28 833.23 7499.05
18 166.77 16.68 150.09 8499.05 849.91 7649.15
19 150.09 15.01 135.09 8649.15 864.91 7784.23
20 135.09 13.51 121.58 8784.23 878.42 7905.81
21 121.58 12.16 109.42 8905.81 890.58 8015.23
22 109.42 10.94 98.48 9015.23 901.52 8113.71
23 98.48 9.85 88.63 9113.71 911.37 8202.34
24 88.63 8.86 79.77 9202.34 920.23 8282.10
25 79.77 7.98 71.79 9282.10 928.21 8353.89
26 71.79 7.18 64.61 9353.89 935.39 8418.50
27 64.61 6.46 58.15 9418.50 941.85 8476.65
28 58.15 5.81 52.33 9476.65 947.67 8528.99
29 52.33 5.23 47.10 9528.99 952.90 8576.09
30 47.10 4.71 42.39 9576.09 957.61 8618.48
31 42.39 4.24 38.15 9618.48 961.85 8656.63
32 38.15 3.82 34.34 9656.63 965.66 8690.97
33 34.34 3.43 30.90 9690.97 969.10 8721.87
34 30.90 3.09 27.81 9721.87 972.19 8749.68
35 27.81 2.78 25.03 9749.68 974.97 8774.72
36 25.03 2.50 22.53 9774.72 977.47 8797.24
37 22.53 2.25 20.28 9797.24 979.72 8817.52
38 20.28 2.03 18.25 9817.52 981.75 8835.77
39 18.25 1.82 16.42 9835.77 983.58 8852.19
40 16.42 1.64 14.78 9852.19 985.22 8866.97
41 14.78 1.48 13.30 9866.97 986.70 8880.27
42 13.30 1.33 11.97 9880.27 988.03 8892.25
43 11.97 1.20 10.78 9892.25 989.22 8903.02
44 10.78 1.08 9.70 9903.02 990.30 8912.72
45 9.70 0.97 8.73 9912.72 991.27 8921.45
46 8.73 0.87 7.86 9921.45 992.14 8929.30
47 7.86 0.79 7.07 9929.30 992.93 8936.37
48 7.07 0.71 6.36 9936.37 993.64 8942.74
49 6.36 0.64 5.73 9942.74 994.27 8948.46
50 5.73 0.57 5.15 9948.46 994.85 8953.62
51 5.15 0.52 4.64 9953.62 995.36 8958.25
52 4.64 0.46 4.17 9958.25 995.83 8962.43
53 4.17 0.42 3.76 9962.43 996.24 8966.19
54 3.76 0.38 3.38 9966.19 996.62 8969.57
55 3.38 0.34 3.04 9969.57 996.96 8972.61
56 3.04 0.30 2.74 9972.61 997.26 8975.35
57 2.74 0.27 2.47 9975.35 997.53 8977.81
58 2.47 0.25 2.22 9977.81 997.78 8980.03
59 2.22 0.22 2.00 9980.03 998.00 8982.03
60 2.00 0.20 1.80 9982.03 998.20 8983.83
61 1.80 0.18 1.62 9983.83 998.38 8985.44
62 1.62 0.16 1.46 9985.44 998.54 8986.90
63 1.46 0.15 1.31 9986.90 998.69 8988.21
64 1.31 0.13 1.18 9988.21 998.82 8989.39
65 1.18 0.12 1.06 9989.39 998.94 8990.45
66 1.06 0.11 0.96 9990.45 999.04 8991.40
Solution
//Java program for cash reserve ratio
/**
* The java program ReserveRatio that prints the loan amount of
* deposit of 1000 and fixed ratio of 0.1 to console.
* */
//ReserveRatio.java
public class ReserveRatio {
public static void main(String[] args) {
//set deposit
double D=1000;
//set reserve ration to 0.1
double F=0.1;
//start N=1
int N=1;
//Set default values
double R=0;
double L=0;
double TD=0;
double TR=0;
double TL=0;
//subtract reserve from deposit and set to loan
L=D-R;
double reserve=F;
System.out.printf("%-20s%-10.2f ","Initial, D: ",D);
System.out.printf("%-20s%-10.1f ","Reserve ration, F: ",F);
System.out.printf("%-5s%8s%10s%10s%10s%10s%10s ",
"N","D-eposit","R-eserve","L-oan","Total-D","Total-R","Total-L");
//Run while loop until loan is <1
while(L>1)
{
//calculate Reserve on deposit
R=reserve*D;
//add deposit to total deposit
TD=D+TD;
//add R to TR
TR+=R;
//subtract deposit from R and set to loan,L
L=D-R;
//Add loan to total loan
TL+=L;
//print values to console
System.out.printf("%-5d%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f ",
N,D,R,L,TD,TR,TL);
//set loan to deposit,D
D=L;
//increment N by one
N++;
}
}
}
Sample output:
Initial, D: 1000.00
Reserve ration, F: 0.1
N D-eposit R-eserve L-oan Total-D Total-R Total-L
1 1000.00 100.00 900.00 1000.00 100.00 900.00
2 900.00 90.00 810.00 1900.00 190.00 1710.00
3 810.00 81.00 729.00 2710.00 271.00 2439.00
4 729.00 72.90 656.10 3439.00 343.90 3095.10
5 656.10 65.61 590.49 4095.10 409.51 3685.59
6 590.49 59.05 531.44 4685.59 468.56 4217.03
7 531.44 53.14 478.30 5217.03 521.70 4695.33
8 478.30 47.83 430.47 5695.33 569.53 5125.80
9 430.47 43.05 387.42 6125.80 612.58 5513.22
10 387.42 38.74 348.68 6513.22 651.32 5861.89
11 348.68 34.87 313.81 6861.89 686.19 6175.70
12 313.81 31.38 282.43 7175.70 717.57 6458.13
13 282.43 28.24 254.19 7458.13 745.81 6712.32
14 254.19 25.42 228.77 7712.32 771.23 6941.09
15 228.77 22.88 205.89 7941.09 794.11 7146.98
16 205.89 20.59 185.30 8146.98 814.70 7332.28
17 185.30 18.53 166.77 8332.28 833.23 7499.05
18 166.77 16.68 150.09 8499.05 849.91 7649.15
19 150.09 15.01 135.09 8649.15 864.91 7784.23
20 135.09 13.51 121.58 8784.23 878.42 7905.81
21 121.58 12.16 109.42 8905.81 890.58 8015.23
22 109.42 10.94 98.48 9015.23 901.52 8113.71
23 98.48 9.85 88.63 9113.71 911.37 8202.34
24 88.63 8.86 79.77 9202.34 920.23 8282.10
25 79.77 7.98 71.79 9282.10 928.21 8353.89
26 71.79 7.18 64.61 9353.89 935.39 8418.50
27 64.61 6.46 58.15 9418.50 941.85 8476.65
28 58.15 5.81 52.33 9476.65 947.67 8528.99
29 52.33 5.23 47.10 9528.99 952.90 8576.09
30 47.10 4.71 42.39 9576.09 957.61 8618.48
31 42.39 4.24 38.15 9618.48 961.85 8656.63
32 38.15 3.82 34.34 9656.63 965.66 8690.97
33 34.34 3.43 30.90 9690.97 969.10 8721.87
34 30.90 3.09 27.81 9721.87 972.19 8749.68
35 27.81 2.78 25.03 9749.68 974.97 8774.72
36 25.03 2.50 22.53 9774.72 977.47 8797.24
37 22.53 2.25 20.28 9797.24 979.72 8817.52
38 20.28 2.03 18.25 9817.52 981.75 8835.77
39 18.25 1.82 16.42 9835.77 983.58 8852.19
40 16.42 1.64 14.78 9852.19 985.22 8866.97
41 14.78 1.48 13.30 9866.97 986.70 8880.27
42 13.30 1.33 11.97 9880.27 988.03 8892.25
43 11.97 1.20 10.78 9892.25 989.22 8903.02
44 10.78 1.08 9.70 9903.02 990.30 8912.72
45 9.70 0.97 8.73 9912.72 991.27 8921.45
46 8.73 0.87 7.86 9921.45 992.14 8929.30
47 7.86 0.79 7.07 9929.30 992.93 8936.37
48 7.07 0.71 6.36 9936.37 993.64 8942.74
49 6.36 0.64 5.73 9942.74 994.27 8948.46
50 5.73 0.57 5.15 9948.46 994.85 8953.62
51 5.15 0.52 4.64 9953.62 995.36 8958.25
52 4.64 0.46 4.17 9958.25 995.83 8962.43
53 4.17 0.42 3.76 9962.43 996.24 8966.19
54 3.76 0.38 3.38 9966.19 996.62 8969.57
55 3.38 0.34 3.04 9969.57 996.96 8972.61
56 3.04 0.30 2.74 9972.61 997.26 8975.35
57 2.74 0.27 2.47 9975.35 997.53 8977.81
58 2.47 0.25 2.22 9977.81 997.78 8980.03
59 2.22 0.22 2.00 9980.03 998.00 8982.03
60 2.00 0.20 1.80 9982.03 998.20 8983.83
61 1.80 0.18 1.62 9983.83 998.38 8985.44
62 1.62 0.16 1.46 9985.44 998.54 8986.90
63 1.46 0.15 1.31 9986.90 998.69 8988.21
64 1.31 0.13 1.18 9988.21 998.82 8989.39
65 1.18 0.12 1.06 9989.39 998.94 8990.45
66 1.06 0.11 0.96 9990.45 999.04 8991.40

More Related Content

Similar to Java program for cash reserve ratio The java program Rese.pdf

Tablas normal chi cuadrado y t student 1-semana 6
Tablas normal chi cuadrado y t student 1-semana 6Tablas normal chi cuadrado y t student 1-semana 6
Tablas normal chi cuadrado y t student 1-semana 6Karla Diaz
 
Wavelet bootstrap Multiple linear regression models
Wavelet bootstrap Multiple linear regression modelsWavelet bootstrap Multiple linear regression models
Wavelet bootstrap Multiple linear regression modelsVinit Sehgal
 
METHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCE
METHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCEMETHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCE
METHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCEpragalath manickam
 
Calculation template
Calculation templateCalculation template
Calculation templateYekian Ian
 
Home Work; Chapter 9; Inventory Policy Decisions
Home Work; Chapter 9; Inventory Policy DecisionsHome Work; Chapter 9; Inventory Policy Decisions
Home Work; Chapter 9; Inventory Policy DecisionsShaheen Sardar
 
Assignment 5.2.pdf
Assignment 5.2.pdfAssignment 5.2.pdf
Assignment 5.2.pdfdash41
 
SevillaR meetup: dplyr and magrittr
SevillaR meetup: dplyr and magrittrSevillaR meetup: dplyr and magrittr
SevillaR meetup: dplyr and magrittrRomain Francois
 
Gravity water supply design illustration using SW software
Gravity water supply design illustration using SW softwareGravity water supply design illustration using SW software
Gravity water supply design illustration using SW softwarePratap Bikram Shahi
 
DEP/ASLR bypass without ROP/JIT
DEP/ASLR bypass without ROP/JITDEP/ASLR bypass without ROP/JIT
DEP/ASLR bypass without ROP/JITArtem I. Baranov
 
Oren nakdimon oh really... i didn't know it is supported in standard edition
Oren nakdimon   oh really... i didn't know it is supported in standard editionOren nakdimon   oh really... i didn't know it is supported in standard edition
Oren nakdimon oh really... i didn't know it is supported in standard editionOren Nakdimon
 
Hand book of Howard Anton calculus exercises 8th edition
Hand book of Howard Anton calculus exercises 8th editionHand book of Howard Anton calculus exercises 8th edition
Hand book of Howard Anton calculus exercises 8th editionPriSim
 
ARitificial Intelligence - Project - Data Classification
ARitificial Intelligence - Project - Data ClassificationARitificial Intelligence - Project - Data Classification
ARitificial Intelligence - Project - Data Classificationmayank0318
 
Computer Science Programming Assignment Help
Computer Science Programming Assignment HelpComputer Science Programming Assignment Help
Computer Science Programming Assignment HelpProgramming Homework Help
 
Flujo de caja
Flujo de cajaFlujo de caja
Flujo de cajaacalixtoh
 
Financial_Management_Class_Notes (1).pdf
Financial_Management_Class_Notes (1).pdfFinancial_Management_Class_Notes (1).pdf
Financial_Management_Class_Notes (1).pdfSIMBARASHEMABHEKA
 

Similar to Java program for cash reserve ratio The java program Rese.pdf (20)

Tablas normal chi cuadrado y t student 1-semana 6
Tablas normal chi cuadrado y t student 1-semana 6Tablas normal chi cuadrado y t student 1-semana 6
Tablas normal chi cuadrado y t student 1-semana 6
 
3 chap
3 chap3 chap
3 chap
 
Wavelet bootstrap Multiple linear regression models
Wavelet bootstrap Multiple linear regression modelsWavelet bootstrap Multiple linear regression models
Wavelet bootstrap Multiple linear regression models
 
Cp 24062018 2241
Cp 24062018 2241Cp 24062018 2241
Cp 24062018 2241
 
METHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCE
METHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCEMETHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCE
METHOD OF EXTRAPOLATION FOR OBTAINING THE RESISTANCE
 
Calculation template
Calculation templateCalculation template
Calculation template
 
Home Work; Chapter 9; Inventory Policy Decisions
Home Work; Chapter 9; Inventory Policy DecisionsHome Work; Chapter 9; Inventory Policy Decisions
Home Work; Chapter 9; Inventory Policy Decisions
 
Assignment 5.2.pdf
Assignment 5.2.pdfAssignment 5.2.pdf
Assignment 5.2.pdf
 
SevillaR meetup: dplyr and magrittr
SevillaR meetup: dplyr and magrittrSevillaR meetup: dplyr and magrittr
SevillaR meetup: dplyr and magrittr
 
Gravity water supply design illustration using SW software
Gravity water supply design illustration using SW softwareGravity water supply design illustration using SW software
Gravity water supply design illustration using SW software
 
DEP/ASLR bypass without ROP/JIT
DEP/ASLR bypass without ROP/JITDEP/ASLR bypass without ROP/JIT
DEP/ASLR bypass without ROP/JIT
 
Oren nakdimon oh really... i didn't know it is supported in standard edition
Oren nakdimon   oh really... i didn't know it is supported in standard editionOren nakdimon   oh really... i didn't know it is supported in standard edition
Oren nakdimon oh really... i didn't know it is supported in standard edition
 
Hand book of Howard Anton calculus exercises 8th edition
Hand book of Howard Anton calculus exercises 8th editionHand book of Howard Anton calculus exercises 8th edition
Hand book of Howard Anton calculus exercises 8th edition
 
Trading on SPY
Trading on SPYTrading on SPY
Trading on SPY
 
ARitificial Intelligence - Project - Data Classification
ARitificial Intelligence - Project - Data ClassificationARitificial Intelligence - Project - Data Classification
ARitificial Intelligence - Project - Data Classification
 
Jhon
JhonJhon
Jhon
 
Computer Science Programming Assignment Help
Computer Science Programming Assignment HelpComputer Science Programming Assignment Help
Computer Science Programming Assignment Help
 
2. intro. to six sigma
2. intro. to six sigma2. intro. to six sigma
2. intro. to six sigma
 
Flujo de caja
Flujo de cajaFlujo de caja
Flujo de caja
 
Financial_Management_Class_Notes (1).pdf
Financial_Management_Class_Notes (1).pdfFinancial_Management_Class_Notes (1).pdf
Financial_Management_Class_Notes (1).pdf
 

More from anjanadistribution

7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf
7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf
7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdfanjanadistribution
 
1.) high throughput As the no. of users increase the throuput shoul.pdf
1.) high throughput As the no. of users increase the throuput shoul.pdf1.) high throughput As the no. of users increase the throuput shoul.pdf
1.) high throughput As the no. of users increase the throuput shoul.pdfanjanadistribution
 
1.Copper lossesThese losses occur in the windings of the transfo.pdf
1.Copper lossesThese losses occur in the windings of the transfo.pdf1.Copper lossesThese losses occur in the windings of the transfo.pdf
1.Copper lossesThese losses occur in the windings of the transfo.pdfanjanadistribution
 
Vesicle bud from one glogi cisterna and fuse with one another is an .pdf
  Vesicle bud from one glogi cisterna and fuse with one another is an .pdf  Vesicle bud from one glogi cisterna and fuse with one another is an .pdf
Vesicle bud from one glogi cisterna and fuse with one another is an .pdfanjanadistribution
 
The degree of ionization refers to the proportion.pdf
                     The degree of ionization refers to the proportion.pdf                     The degree of ionization refers to the proportion.pdf
The degree of ionization refers to the proportion.pdfanjanadistribution
 
NaCl is more ionic compound than water. So polar.pdf
                     NaCl  is more ionic compound than water. So polar.pdf                     NaCl  is more ionic compound than water. So polar.pdf
NaCl is more ionic compound than water. So polar.pdfanjanadistribution
 
Lithium is a much better Lewis acid than sodium. .pdf
                     Lithium is a much better Lewis acid than sodium. .pdf                     Lithium is a much better Lewis acid than sodium. .pdf
Lithium is a much better Lewis acid than sodium. .pdfanjanadistribution
 
Matter is a general term for the substance of whi.pdf
                     Matter is a general term for the substance of whi.pdf                     Matter is a general term for the substance of whi.pdf
Matter is a general term for the substance of whi.pdfanjanadistribution
 
IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf
                     IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf                     IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf
IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdfanjanadistribution
 
Using the expressions for P0, Pt and P, derive t.pdf
                     Using the expressions for P0, Pt and P, derive t.pdf                     Using the expressions for P0, Pt and P, derive t.pdf
Using the expressions for P0, Pt and P, derive t.pdfanjanadistribution
 
there is released 2 moles off Na+ ions & 1 mole .pdf
                     there is released 2 moles off Na+ ions & 1 mole .pdf                     there is released 2 moles off Na+ ions & 1 mole .pdf
there is released 2 moles off Na+ ions & 1 mole .pdfanjanadistribution
 
This is for H2SO3 but the principle is the same l.pdf
                     This is for H2SO3 but the principle is the same l.pdf                     This is for H2SO3 but the principle is the same l.pdf
This is for H2SO3 but the principle is the same l.pdfanjanadistribution
 
z = -1.645Solutionz = -1.645.pdf
z = -1.645Solutionz = -1.645.pdfz = -1.645Solutionz = -1.645.pdf
z = -1.645Solutionz = -1.645.pdfanjanadistribution
 
Fe(OH)3 is a base and SO3 is acidic. Base + Acid.pdf
                     Fe(OH)3 is a base and SO3 is acidic.  Base + Acid.pdf                     Fe(OH)3 is a base and SO3 is acidic.  Base + Acid.pdf
Fe(OH)3 is a base and SO3 is acidic. Base + Acid.pdfanjanadistribution
 
evolution of gas. formation of precipitate. chang.pdf
                     evolution of gas. formation of precipitate. chang.pdf                     evolution of gas. formation of precipitate. chang.pdf
evolution of gas. formation of precipitate. chang.pdfanjanadistribution
 
We know that total delay is given by (N(LR))Pwhere N is the tot.pdf
We know that total delay is given by (N(LR))Pwhere N is the tot.pdfWe know that total delay is given by (N(LR))Pwhere N is the tot.pdf
We know that total delay is given by (N(LR))Pwhere N is the tot.pdfanjanadistribution
 
The given picture shows the stages of translation. there are three m.pdf
The given picture shows the stages of translation. there are three m.pdfThe given picture shows the stages of translation. there are three m.pdf
The given picture shows the stages of translation. there are three m.pdfanjanadistribution
 
The bacteria belonging to Bacillus anthracis which can be used as a .pdf
The bacteria belonging to Bacillus anthracis which can be used as a .pdfThe bacteria belonging to Bacillus anthracis which can be used as a .pdf
The bacteria belonging to Bacillus anthracis which can be used as a .pdfanjanadistribution
 
public class Letter{private char letter;private int count;pu.pdf
public class Letter{private char letter;private int count;pu.pdfpublic class Letter{private char letter;private int count;pu.pdf
public class Letter{private char letter;private int count;pu.pdfanjanadistribution
 
Please follow the code and comments for description CODE publi.pdf
Please follow the code and comments for description CODE publi.pdfPlease follow the code and comments for description CODE publi.pdf
Please follow the code and comments for description CODE publi.pdfanjanadistribution
 

More from anjanadistribution (20)

7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf
7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf
7(2=2100-.02).02=.14Solution7(2=2100-.02).02=.14.pdf
 
1.) high throughput As the no. of users increase the throuput shoul.pdf
1.) high throughput As the no. of users increase the throuput shoul.pdf1.) high throughput As the no. of users increase the throuput shoul.pdf
1.) high throughput As the no. of users increase the throuput shoul.pdf
 
1.Copper lossesThese losses occur in the windings of the transfo.pdf
1.Copper lossesThese losses occur in the windings of the transfo.pdf1.Copper lossesThese losses occur in the windings of the transfo.pdf
1.Copper lossesThese losses occur in the windings of the transfo.pdf
 
Vesicle bud from one glogi cisterna and fuse with one another is an .pdf
  Vesicle bud from one glogi cisterna and fuse with one another is an .pdf  Vesicle bud from one glogi cisterna and fuse with one another is an .pdf
Vesicle bud from one glogi cisterna and fuse with one another is an .pdf
 
The degree of ionization refers to the proportion.pdf
                     The degree of ionization refers to the proportion.pdf                     The degree of ionization refers to the proportion.pdf
The degree of ionization refers to the proportion.pdf
 
NaCl is more ionic compound than water. So polar.pdf
                     NaCl  is more ionic compound than water. So polar.pdf                     NaCl  is more ionic compound than water. So polar.pdf
NaCl is more ionic compound than water. So polar.pdf
 
Lithium is a much better Lewis acid than sodium. .pdf
                     Lithium is a much better Lewis acid than sodium. .pdf                     Lithium is a much better Lewis acid than sodium. .pdf
Lithium is a much better Lewis acid than sodium. .pdf
 
Matter is a general term for the substance of whi.pdf
                     Matter is a general term for the substance of whi.pdf                     Matter is a general term for the substance of whi.pdf
Matter is a general term for the substance of whi.pdf
 
IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf
                     IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf                     IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf
IO3^- is reduced ( I is from +5 in IO3^- to 0 in .pdf
 
Using the expressions for P0, Pt and P, derive t.pdf
                     Using the expressions for P0, Pt and P, derive t.pdf                     Using the expressions for P0, Pt and P, derive t.pdf
Using the expressions for P0, Pt and P, derive t.pdf
 
there is released 2 moles off Na+ ions & 1 mole .pdf
                     there is released 2 moles off Na+ ions & 1 mole .pdf                     there is released 2 moles off Na+ ions & 1 mole .pdf
there is released 2 moles off Na+ ions & 1 mole .pdf
 
This is for H2SO3 but the principle is the same l.pdf
                     This is for H2SO3 but the principle is the same l.pdf                     This is for H2SO3 but the principle is the same l.pdf
This is for H2SO3 but the principle is the same l.pdf
 
z = -1.645Solutionz = -1.645.pdf
z = -1.645Solutionz = -1.645.pdfz = -1.645Solutionz = -1.645.pdf
z = -1.645Solutionz = -1.645.pdf
 
Fe(OH)3 is a base and SO3 is acidic. Base + Acid.pdf
                     Fe(OH)3 is a base and SO3 is acidic.  Base + Acid.pdf                     Fe(OH)3 is a base and SO3 is acidic.  Base + Acid.pdf
Fe(OH)3 is a base and SO3 is acidic. Base + Acid.pdf
 
evolution of gas. formation of precipitate. chang.pdf
                     evolution of gas. formation of precipitate. chang.pdf                     evolution of gas. formation of precipitate. chang.pdf
evolution of gas. formation of precipitate. chang.pdf
 
We know that total delay is given by (N(LR))Pwhere N is the tot.pdf
We know that total delay is given by (N(LR))Pwhere N is the tot.pdfWe know that total delay is given by (N(LR))Pwhere N is the tot.pdf
We know that total delay is given by (N(LR))Pwhere N is the tot.pdf
 
The given picture shows the stages of translation. there are three m.pdf
The given picture shows the stages of translation. there are three m.pdfThe given picture shows the stages of translation. there are three m.pdf
The given picture shows the stages of translation. there are three m.pdf
 
The bacteria belonging to Bacillus anthracis which can be used as a .pdf
The bacteria belonging to Bacillus anthracis which can be used as a .pdfThe bacteria belonging to Bacillus anthracis which can be used as a .pdf
The bacteria belonging to Bacillus anthracis which can be used as a .pdf
 
public class Letter{private char letter;private int count;pu.pdf
public class Letter{private char letter;private int count;pu.pdfpublic class Letter{private char letter;private int count;pu.pdf
public class Letter{private char letter;private int count;pu.pdf
 
Please follow the code and comments for description CODE publi.pdf
Please follow the code and comments for description CODE publi.pdfPlease follow the code and comments for description CODE publi.pdf
Please follow the code and comments for description CODE publi.pdf
 

Recently uploaded

Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

Java program for cash reserve ratio The java program Rese.pdf

  • 1. //Java program for cash reserve ratio /** * The java program ReserveRatio that prints the loan amount of * deposit of 1000 and fixed ratio of 0.1 to console. * */ //ReserveRatio.java public class ReserveRatio { public static void main(String[] args) { //set deposit double D=1000; //set reserve ration to 0.1 double F=0.1; //start N=1 int N=1; //Set default values double R=0; double L=0; double TD=0; double TR=0; double TL=0; //subtract reserve from deposit and set to loan L=D-R; double reserve=F; System.out.printf("%-20s%-10.2f ","Initial, D: ",D); System.out.printf("%-20s%-10.1f ","Reserve ration, F: ",F); System.out.printf("%-5s%8s%10s%10s%10s%10s%10s ", "N","D-eposit","R-eserve","L-oan","Total-D","Total-R","Total-L");
  • 2. //Run while loop until loan is <1 while(L>1) { //calculate Reserve on deposit R=reserve*D; //add deposit to total deposit TD=D+TD; //add R to TR TR+=R; //subtract deposit from R and set to loan,L L=D-R; //Add loan to total loan TL+=L; //print values to console System.out.printf("%-5d%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f ", N,D,R,L,TD,TR,TL); //set loan to deposit,D D=L; //increment N by one N++; } } } Sample output: Initial, D: 1000.00 Reserve ration, F: 0.1 N D-eposit R-eserve L-oan Total-D Total-R Total-L 1 1000.00 100.00 900.00 1000.00 100.00 900.00
  • 3. 2 900.00 90.00 810.00 1900.00 190.00 1710.00 3 810.00 81.00 729.00 2710.00 271.00 2439.00 4 729.00 72.90 656.10 3439.00 343.90 3095.10 5 656.10 65.61 590.49 4095.10 409.51 3685.59 6 590.49 59.05 531.44 4685.59 468.56 4217.03 7 531.44 53.14 478.30 5217.03 521.70 4695.33 8 478.30 47.83 430.47 5695.33 569.53 5125.80 9 430.47 43.05 387.42 6125.80 612.58 5513.22 10 387.42 38.74 348.68 6513.22 651.32 5861.89 11 348.68 34.87 313.81 6861.89 686.19 6175.70 12 313.81 31.38 282.43 7175.70 717.57 6458.13 13 282.43 28.24 254.19 7458.13 745.81 6712.32 14 254.19 25.42 228.77 7712.32 771.23 6941.09 15 228.77 22.88 205.89 7941.09 794.11 7146.98 16 205.89 20.59 185.30 8146.98 814.70 7332.28 17 185.30 18.53 166.77 8332.28 833.23 7499.05 18 166.77 16.68 150.09 8499.05 849.91 7649.15 19 150.09 15.01 135.09 8649.15 864.91 7784.23 20 135.09 13.51 121.58 8784.23 878.42 7905.81 21 121.58 12.16 109.42 8905.81 890.58 8015.23 22 109.42 10.94 98.48 9015.23 901.52 8113.71 23 98.48 9.85 88.63 9113.71 911.37 8202.34 24 88.63 8.86 79.77 9202.34 920.23 8282.10 25 79.77 7.98 71.79 9282.10 928.21 8353.89 26 71.79 7.18 64.61 9353.89 935.39 8418.50 27 64.61 6.46 58.15 9418.50 941.85 8476.65 28 58.15 5.81 52.33 9476.65 947.67 8528.99 29 52.33 5.23 47.10 9528.99 952.90 8576.09 30 47.10 4.71 42.39 9576.09 957.61 8618.48 31 42.39 4.24 38.15 9618.48 961.85 8656.63 32 38.15 3.82 34.34 9656.63 965.66 8690.97 33 34.34 3.43 30.90 9690.97 969.10 8721.87 34 30.90 3.09 27.81 9721.87 972.19 8749.68 35 27.81 2.78 25.03 9749.68 974.97 8774.72 36 25.03 2.50 22.53 9774.72 977.47 8797.24 37 22.53 2.25 20.28 9797.24 979.72 8817.52
  • 4. 38 20.28 2.03 18.25 9817.52 981.75 8835.77 39 18.25 1.82 16.42 9835.77 983.58 8852.19 40 16.42 1.64 14.78 9852.19 985.22 8866.97 41 14.78 1.48 13.30 9866.97 986.70 8880.27 42 13.30 1.33 11.97 9880.27 988.03 8892.25 43 11.97 1.20 10.78 9892.25 989.22 8903.02 44 10.78 1.08 9.70 9903.02 990.30 8912.72 45 9.70 0.97 8.73 9912.72 991.27 8921.45 46 8.73 0.87 7.86 9921.45 992.14 8929.30 47 7.86 0.79 7.07 9929.30 992.93 8936.37 48 7.07 0.71 6.36 9936.37 993.64 8942.74 49 6.36 0.64 5.73 9942.74 994.27 8948.46 50 5.73 0.57 5.15 9948.46 994.85 8953.62 51 5.15 0.52 4.64 9953.62 995.36 8958.25 52 4.64 0.46 4.17 9958.25 995.83 8962.43 53 4.17 0.42 3.76 9962.43 996.24 8966.19 54 3.76 0.38 3.38 9966.19 996.62 8969.57 55 3.38 0.34 3.04 9969.57 996.96 8972.61 56 3.04 0.30 2.74 9972.61 997.26 8975.35 57 2.74 0.27 2.47 9975.35 997.53 8977.81 58 2.47 0.25 2.22 9977.81 997.78 8980.03 59 2.22 0.22 2.00 9980.03 998.00 8982.03 60 2.00 0.20 1.80 9982.03 998.20 8983.83 61 1.80 0.18 1.62 9983.83 998.38 8985.44 62 1.62 0.16 1.46 9985.44 998.54 8986.90 63 1.46 0.15 1.31 9986.90 998.69 8988.21 64 1.31 0.13 1.18 9988.21 998.82 8989.39 65 1.18 0.12 1.06 9989.39 998.94 8990.45 66 1.06 0.11 0.96 9990.45 999.04 8991.40 Solution //Java program for cash reserve ratio /** * The java program ReserveRatio that prints the loan amount of * deposit of 1000 and fixed ratio of 0.1 to console.
  • 5. * */ //ReserveRatio.java public class ReserveRatio { public static void main(String[] args) { //set deposit double D=1000; //set reserve ration to 0.1 double F=0.1; //start N=1 int N=1; //Set default values double R=0; double L=0; double TD=0; double TR=0; double TL=0; //subtract reserve from deposit and set to loan L=D-R; double reserve=F; System.out.printf("%-20s%-10.2f ","Initial, D: ",D); System.out.printf("%-20s%-10.1f ","Reserve ration, F: ",F); System.out.printf("%-5s%8s%10s%10s%10s%10s%10s ", "N","D-eposit","R-eserve","L-oan","Total-D","Total-R","Total-L"); //Run while loop until loan is <1 while(L>1) {
  • 6. //calculate Reserve on deposit R=reserve*D; //add deposit to total deposit TD=D+TD; //add R to TR TR+=R; //subtract deposit from R and set to loan,L L=D-R; //Add loan to total loan TL+=L; //print values to console System.out.printf("%-5d%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f%-10.2f ", N,D,R,L,TD,TR,TL); //set loan to deposit,D D=L; //increment N by one N++; } } } Sample output: Initial, D: 1000.00 Reserve ration, F: 0.1 N D-eposit R-eserve L-oan Total-D Total-R Total-L 1 1000.00 100.00 900.00 1000.00 100.00 900.00 2 900.00 90.00 810.00 1900.00 190.00 1710.00 3 810.00 81.00 729.00 2710.00 271.00 2439.00 4 729.00 72.90 656.10 3439.00 343.90 3095.10 5 656.10 65.61 590.49 4095.10 409.51 3685.59 6 590.49 59.05 531.44 4685.59 468.56 4217.03
  • 7. 7 531.44 53.14 478.30 5217.03 521.70 4695.33 8 478.30 47.83 430.47 5695.33 569.53 5125.80 9 430.47 43.05 387.42 6125.80 612.58 5513.22 10 387.42 38.74 348.68 6513.22 651.32 5861.89 11 348.68 34.87 313.81 6861.89 686.19 6175.70 12 313.81 31.38 282.43 7175.70 717.57 6458.13 13 282.43 28.24 254.19 7458.13 745.81 6712.32 14 254.19 25.42 228.77 7712.32 771.23 6941.09 15 228.77 22.88 205.89 7941.09 794.11 7146.98 16 205.89 20.59 185.30 8146.98 814.70 7332.28 17 185.30 18.53 166.77 8332.28 833.23 7499.05 18 166.77 16.68 150.09 8499.05 849.91 7649.15 19 150.09 15.01 135.09 8649.15 864.91 7784.23 20 135.09 13.51 121.58 8784.23 878.42 7905.81 21 121.58 12.16 109.42 8905.81 890.58 8015.23 22 109.42 10.94 98.48 9015.23 901.52 8113.71 23 98.48 9.85 88.63 9113.71 911.37 8202.34 24 88.63 8.86 79.77 9202.34 920.23 8282.10 25 79.77 7.98 71.79 9282.10 928.21 8353.89 26 71.79 7.18 64.61 9353.89 935.39 8418.50 27 64.61 6.46 58.15 9418.50 941.85 8476.65 28 58.15 5.81 52.33 9476.65 947.67 8528.99 29 52.33 5.23 47.10 9528.99 952.90 8576.09 30 47.10 4.71 42.39 9576.09 957.61 8618.48 31 42.39 4.24 38.15 9618.48 961.85 8656.63 32 38.15 3.82 34.34 9656.63 965.66 8690.97 33 34.34 3.43 30.90 9690.97 969.10 8721.87 34 30.90 3.09 27.81 9721.87 972.19 8749.68 35 27.81 2.78 25.03 9749.68 974.97 8774.72 36 25.03 2.50 22.53 9774.72 977.47 8797.24 37 22.53 2.25 20.28 9797.24 979.72 8817.52 38 20.28 2.03 18.25 9817.52 981.75 8835.77 39 18.25 1.82 16.42 9835.77 983.58 8852.19 40 16.42 1.64 14.78 9852.19 985.22 8866.97 41 14.78 1.48 13.30 9866.97 986.70 8880.27 42 13.30 1.33 11.97 9880.27 988.03 8892.25
  • 8. 43 11.97 1.20 10.78 9892.25 989.22 8903.02 44 10.78 1.08 9.70 9903.02 990.30 8912.72 45 9.70 0.97 8.73 9912.72 991.27 8921.45 46 8.73 0.87 7.86 9921.45 992.14 8929.30 47 7.86 0.79 7.07 9929.30 992.93 8936.37 48 7.07 0.71 6.36 9936.37 993.64 8942.74 49 6.36 0.64 5.73 9942.74 994.27 8948.46 50 5.73 0.57 5.15 9948.46 994.85 8953.62 51 5.15 0.52 4.64 9953.62 995.36 8958.25 52 4.64 0.46 4.17 9958.25 995.83 8962.43 53 4.17 0.42 3.76 9962.43 996.24 8966.19 54 3.76 0.38 3.38 9966.19 996.62 8969.57 55 3.38 0.34 3.04 9969.57 996.96 8972.61 56 3.04 0.30 2.74 9972.61 997.26 8975.35 57 2.74 0.27 2.47 9975.35 997.53 8977.81 58 2.47 0.25 2.22 9977.81 997.78 8980.03 59 2.22 0.22 2.00 9980.03 998.00 8982.03 60 2.00 0.20 1.80 9982.03 998.20 8983.83 61 1.80 0.18 1.62 9983.83 998.38 8985.44 62 1.62 0.16 1.46 9985.44 998.54 8986.90 63 1.46 0.15 1.31 9986.90 998.69 8988.21 64 1.31 0.13 1.18 9988.21 998.82 8989.39 65 1.18 0.12 1.06 9989.39 998.94 8990.45 66 1.06 0.11 0.96 9990.45 999.04 8991.40