Archivo .bat para hacer cálculos con números decimales
Archivo .bat para hacer cálculos con números decimales
Buenas,
@echo off
Title Programa para calcular ganancia
:Menu
Echo Ganancia en dolares
set /p adfly=Escriba la cantidad a convertir ?
set /a cent=%adfly%
set /a dolar=240000
set /a totcent=240
if %cent%==240 (echo ====tienes un centavo====)
if %cent%==240000 (echo ====tienes un dolar====)
set /a totd=%cent%/dolar
set /a totcent=%cent%/240
echo Tines un %totcent% Centavos
REM NO ME MUESTRA EN DECIMALES
echo Tienes un %totd% Dolares
REM NO ME MUESTRA EN DECIMALES
Echo prueba adfly %cent%:~ prueba total centavos %totcent% prueba total dolares %totd%
REM NO ME MUESTRA EN DECIMALES
echo 1.-Para volver al inicio
echo 2.-Para salir
set /p volver=desea volver al inicio ?
if %volver%==1 goto menu
if %volver%==2 goto salir
:Salir
Msg * Tienes %totcent% Centavos y %totd% Dolares
Pause >nul
exit
Pause