DoR@Hee의 끄적끄적
suninatas 1번 본문
문제 첫화면 저 조건에 맞는것을 넣으면 될 거 같다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <% str = Request("str") //form 태그에서 넘겨받은 값을 str에 저장 If not str = "" Then //str이 공백이 아니라면 result = Replace(str,"a","aad") //a를 aad로 변환 후 result에 저장 result = Replace(result,"i","in") //result에 존재하는 i를 in으로 치환 result1 = Mid(result,2,2) //result를 기준으로 2번째 문자열부터 +2 빼옴 result2 = Mid(result,4,6) //result를 기준으로 4번째 문자열부터 +2 빼옴 result = result1 & result2 // 그 결과를 + Response.write result If result = "admin" Then pw = "????????" End if End if %> 즉 ami = aadmin result1 = ad result2 = min | cs |
'WarGame > suninatas' 카테고리의 다른 글
suninatas 7번 (0) | 2019.03.05 |
---|---|
suninatas 6번 (0) | 2019.03.05 |
suninatas 5번 (0) | 2019.03.04 |
suninatas 4번 (0) | 2019.03.04 |
suninatas 2번 (0) | 2019.02.25 |
Comments