batch file - Variable does not change after changing -


@echo off  if (%1) == () (     echo.anfangskapital eingeben:     set /p anfangskapital =      echo %anfangskapital%  ) else (     set /a anfangskapital = %1 )  pause 

the value of anfangskapital 0. why? how can change value?


Comments

Popular posts from this blog

php - Autoloader issue not returning Class -

python - Getting next two indexes regardless of current index -

ruby - Prevent Custom Validation Error on Association -