We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eaeb3a commit 358285eCopy full SHA for 358285e
simple-interest.sh
@@ -0,0 +1,19 @@
1
+#!/bin/bash
2
+
3
+# Script para calcular interés simple
4
5
+# Fórmula: Interés = (Principal * Tasa * Tiempo) / 100
6
7
+echo "Ingrese el monto principal:"
8
+read principal
9
10
+echo "Ingrese la tasa de interés anual (en %):"
11
+read rate
12
13
+echo "Ingrese el tiempo en años:"
14
+read time
15
16
+# Cálculo del interés simple
17
+interest=$(echo "scale=2; ($principal * $rate * $time) / 100" | bc)
18
19
+echo "El interés simple es: $interest"
0 commit comments