parina's blog

By parina, 13 years ago, In English
[code]
@echo off
setlocal ENABLEDELAYEDEXPANSION
set s=0
for %%i in (%*) do (
set /A j=%%i/100
start http://uva.onlinejudge.org/external/!j!/%%i.html
set s=1
)
if !s!==1 goto end

echo Give 0 to end.
echo.
:again
set /P x=UVA Problem No.:
if !x! EQU 0 goto end
if !x! LSS 100 (
echo Bad Parameter
goto again
)
if !x! GEQ 1000 (
if !x! LSS 10000 (
echo Bad Parameter
goto again
)
)
set /A y=!x!/100
start http://uva.onlinejudge.org/external/!y!/!x!.html
goto again
:end
[/code]

guys,paste this code on a textfile and save it with uva.bat  
See,searching problems are easier now.
  • Vote: I like it
  • +1
  • Vote: I do not like it

| Write comment?
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Please, use paste tool, e.g. pastebin.com.