Advertisement
LightProgrammer000

Divida

Jun 14th, 2023
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.21 KB | None | 0 0
  1. // Bibliotecas
  2. import 'dart:io';
  3.  
  4. // Funcao principal
  5. main() {
  6.   // Variaveis
  7.   int mes = 1;
  8.  
  9.   // Entrada de dados
  10.   stdout.write("# Valor da divida: ");
  11.   double div = double.parse(stdin.readLineSync()!);
  12.  
  13.   stdout.write("# Taxa de juros mensal: ");
  14.   double jur_men = double.parse(stdin.readLineSync()!);
  15.  
  16.   while (div > 0) {
  17.     div += div * jur_men / 100;
  18.     print("\n* Divida (mes $mes): R\$ " + div.toStringAsFixed(2));
  19.  
  20.     // Valor mensal a pagar
  21.     stdout.write("+ Valor mensal que sera pago: ");
  22.     double val_men = double.parse(stdin.readLineSync()!);
  23.  
  24.     // Abatimento da divida
  25.     div -= val_men;
  26.  
  27.     // Estrutural condicional: Pagamento acima do valor da divida
  28.     if (div < 0) {
  29.       print("\n- Pagamento concluido com sucesso no mes $mes");
  30.       print("# Troco: R\$ " + (-1 * div).toStringAsFixed(2));
  31.     }
  32.     // Pagamento no exato valor da divida
  33.     else if (div == 0) {
  34.       print("\n- Pagamento concluido com sucesso no $mes");
  35.     }
  36.  
  37.     // Relatorio do abatimento na divida
  38.     else {
  39.       print("+ Valor pago: R\$" + val_men.toStringAsFixed(2));
  40.       print("+ Divida atual: R\$ " + div.toStringAsFixed(2));
  41.     }
  42.  
  43.     // Contagem de meses
  44.     mes++;
  45.   }
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement