Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Amortizacion de prestamos con el metodo Frances
//Title of this code //Rextester.Program.Main is the entry point for your code. Don't change it. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { //formula para calcular cuota fija ///de un prestamo usando el metodo frances de cuota fija double Monto = 100000; int Plazos = 60; double taza = 0.02; //A = 1-(1+taza)^-plazos int p = Plazos * -1; double b =(1+taza); double A = (1-Math.Pow(b,p))/taza; //Cuota Fija = Monto / A; double Cuota_F = Monto/A; Console.WriteLine("el valor de la cuota Fija es:{0:C} ", Cuota_F ); } } }
run
|
edit
|
history
|
help
0
test
Tarkov Time
C# Abstract Syntax Tree Example: Compiler for a numeric expression
Generic Reference constraint
BFS DFS stack vs recursive
Found many section of times intersect (Question version)
tytry yrtyrty rt tyrty
Plantera mas com escolhas
ternary function
Print Matrix To Screen (with little pretty box)