Posts

Showing posts from February 14, 2011

Programming in DOS (Camparision of two numbers)

Image
@Echo off set /p a="Enter the first no. for comaparison" set /p b="Enter the second no. for comaparison" if %a% GTR %b% (Echo %a% )Else (Echo %b%) pause pause