-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultado.php
215 lines (188 loc) · 8.21 KB
/
resultado.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<HTML>
<HEAD>
<TITLE>CONSULTOR CAE</TITLE>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<style type="text/css">
@media screen and (max-width: 602px){
#logo{
margin-left: 68px;
}
}
@media screen and (min-width: 603px) and (max-width: 727px){
#logo{
margin-left: 104px;
}
}
@media screen and (min-width: 728px){
#logo{
margin-left: 150px;
}
}
@media screen and (max-width: 991px){
#logo2{
text-align: center;
}
}
#logo{
height: 22%;
width: 71%;
margin-top: 33px;
}
#cae{
margin-top: 95px;
font-style: oblique;
color: red;
font-weight: bold;
font-size: 369%;
}
.sub{
font-style: oblique;
color: red;
font-weight: bold;
}
#program{
margin-top: 100px;
}
.button {
align-items: flex-start;
text-align: center;
cursor: default;
color: buttontext;
background-color: buttonface;
box-sizing: border-box;
padding: 2px 6px 3px;
border-width: 2px;
border-style: outset;
border-color: buttonface;
border-image: initial;
}
</style>
</HEAD>
<BODY>
<div class="row">
<div class="col-xs-12 col-md-6">
<img id="logo" align="center"; src="images/logo_udp.PNG"></img>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div id="logo2">
<div class="col-xs-12 col-md-12">
<div id="cae">Consultor CAE</div>
</div>
<div class="col-xs-12 col-md-12">
<div id="project" class="sub" style="margin-right: 149px;">Proyecto TIC I - Taller Warm Up </div>
</div>
<div class="col-xs-12 col-md-12">
<div id="names" class="sub" style="margin-right: 38px;">Diego Farías - Benjamín Morales - Cristóbal Urra</div>
</div>
<div class="col-xs-12 4col-md-12">
<div id="profe" class="sub" style="margin-right: 215px";>Profesor: Jorge Elliott</div>
</div>
</div>
</div>
<div class="col-xs-12 cold-md-12">
<div id="program" align="center">
<?php
if ($_POST ["prestamo"] !="" and $_POST ["plazo"]!=""and $_POST ["cuota"]!=""and $_POST ["agregado"]!=""and $_POST ["plazo"]<49 and $_POST ["plazo"]>1){
#funcion que calcula el interes asociado
# p = prestamo ; n = plazo ; c = cuota ; pr = prestamo + gastos adicionales
function CalCuota($p,$i,$n){
if ($i != 0 ){
return $p*(((1+$i)**$n)*$i)/(((1+$i)**$n) - 1);
}else{
return ($p/$n);
}
}
function IntAsociado($p,$c,$n){ #Interes asociado
$i1 = 0;
$i2 = 0.99999;
$x1 = CalCuota($p,$i1,$n);
$x2 = CalCuota($p,$i2,$n);
$mid = CalCuota($p,($i1+$i2)/2,$n);
$j=0;
while($j<999){
if ($x1 < $c and $c <= $mid){
$x2 = $mid;
$i2 = ($i1+$i2)/2;
$mid = Calcuota($p,($i1+$i2)/2,$n);
if ( $c - $x1 <0.00001){
return $i1;
}
}else{
$x1 = $mid;
$i1 = ($i1+$i2)/2;
$mid = Calcuota($p,($i1+$i2)/2,$n);
if( $x2 - $c <0.00001){
return $i2;
}
}
$j++;
}
}
function CuotaReal($pr,$i,$n){
if ($i != 0 ){
return $pr*$i/(1-(1+$i)**-$n);
}else{
return $pr;
}
}
function CME($cr,$n,$t){
$x=0;
for ($i = 1; $i <= $n; $i++){
$x += (1+$t)**(-$i);
}
return $cr*$x;
}
function IntAnual($p,$cr,$n){
$i1 = 0.0;
$i2 = 0.9999;
$x1 = CME($cr,$n,$i1);
$x2 = CME($cr,$n,$i2);
$mid = CME($cr,$n,($i1+$i2)/2);
$j=0;
while($j<999){
if ($x1 > $p){
if($mid >= $p){
$x1 = $mid;
$i1 = ($i1+$i2)/2;
$mid = CME($cr,$n,($i1+$i2)/2);
if ( abs($x1 - $p) <0.000001){
return $i1;
}
}else{
if($x2 < $mid){
$x2 = $mid;
$i2 = ($i1+$i2)/2;
$mid = CME($cr,$n,($i1+$i2)/2);
}
if ( abs($x2 - $p) <0.000001){
return $i2;
}
}
}
$j++;
}
}
function Prestamo($p,$c,$n,$g){
$prestamo = $_POST["prestamo"];
$pr = $p + $g;
$i = IntAsociado($p,$c,$n);
$cr = CuotaReal($pr,$i,$n);
$t = IntAnual($p,$cr,$n); //esta es la variable t po sjaksjaks see
$CTC = $cr*$n;
$CAE = round($t*12*100,2);
print "<p>El credito pedido tiene un valor de: $$prestamo<br>El costo total del credito tiene un valor de: $$CTC<br>
La carga anual equivalente (CAE) tiene un valor de: $CAE%</p>";
}
Prestamo($_POST ["prestamo"], $_POST ["cuota"],$_POST ["plazo"],$_POST ["agregado"]);
//print($_POST ["prestamo"]+ $_POST ["cuota"]+ $_POST ["plazo"]+$_POST ["agregado"]);
print ('<br /><br/><a href="index.php" class="button">Volver</a>');
} else {
print("Ingresa algún valor numerico valido");
print ('<br /><br/><a href="index.php" class="button">Volver</a>');
}
?>
</div>
</div>
</div>
</BODY>
</HTML>