10 lines
134 B
Batchfile
10 lines
134 B
Batchfile
set /a a=%arg%+0 >nul
|
|
if %a% == 0 (
|
|
if not "%arg%"=="0" (
|
|
echo Non Numeric.
|
|
) else (
|
|
echo Numeric.
|
|
)
|
|
) else (
|
|
echo Numeric.
|
|
)
|