[ASP] 1,2,4,8을 이용한 값 비교
1일 때는 ㄱ을 2일 때는 ㄴ을 4일 때는 ㄷ을 8일 때는 ㄹ을 표시해야 하며, 3, 5, 6, 7일 때는 그 합에 해당하는 모든 숫자(3일 경우 1, 2)에 해당하는 기호를 표시해야 한다. 이럴 때 if 값 and 1 then response.write "ㄱ" if 값 and 2 then response.write "ㄴ" if 값 and 4 then response.write "ㄷ" if 값 and 8 then response.write "ㄹ" 이렇게 ..