URI문제 질문좀...

  • zmfldlwl
    zmfldlwl

    import java.util.*;

    public class test
    {
    public static void main(String[] args)
    {
    Scanner s = new Scanner(System.in);

    int testcase = s.nextInt(); s.nextLine();
    
        if(testcase < 1 && testcase > 100)
            return;
    
        String[] value = new String[testcase];
    
        for(int i=0;i<testcase;i++)
        {
            value[i] = s.nextLine();
            if(value[i].length() > 80)
                return;
            //한줄 읽기 완료
            for(int j=0;j<testcase;j++)
            {
                String temp = null;
    
                temp = value[i].replaceAll("%20", " ");
                temp = temp.replaceAll("%21", "!");
                temp = temp.replaceAll("%24", "$");
                temp = temp.replaceAll("%25", "%");
                temp = temp.replaceAll("%28", "(");
                temp = temp.replaceAll("%29", ")");
                temp = temp.replaceAll("%2a", "*");
    
                value[i] = temp;
            }
        }
        for(int i=0;i<testcase;i++)
            System.out.println(value[i]);
    }

    }


    9년 전
2개의 댓글이 있습니다.
  • zmfldlwl
    zmfldlwl

    글글이 잇이상이상학이상하게 달달린달리넹달리네요...


    9년 전 link
  • zmfldlwl
    zmfldlwl

    런런타런타임 오오류 뜬뜨느뜨는데 왜 그그런그런지 몰모륵모르겟모르겟넹모르겟네요 ㅠㅠㅠ 간간단간단한간단한건간단한건데


    9년 전 link
  • 정회원 권한이 있어야 커멘트를 다실 수 있습니다. 정회원이 되시려면 온라인 저지에서 5문제 이상을 푸시고, 가입 후 7일 이상이 지나셔야 합니다. 현재 문제를 푸셨습니다.