3.4.2 복문 if~endif 문
설명
문법
if <bool 표현식>
<명령문>
…
endif사용 예
var pressure=95, limit=90, exceed
if pressure > limit
exceed = pressure - limit
print "경고: 압력이 너무 높습니다."
endif
endLast updated
Was this helpful?
if <bool 표현식>
<명령문>
…
endifvar pressure=95, limit=90, exceed
if pressure > limit
exceed = pressure - limit
print "경고: 압력이 너무 높습니다."
endif
endLast updated
Was this helpful?
Was this helpful?