Run time Error 뜨는 이유가 뭔가요?
7
3x + 5
5 % 3x
5 % 0
5 ‘ 2
4 / 0
2x + 3x
10 / 100
이렇게 넣어봐도
Wrong Input: 3x
Wrong Input: 3x
Wrong Input: 0
Wrong Input: ‘
Wrong Input: 0
Wrong Input: 2x
10 / 100 = 0
이렇게 잘 나오고 샘플output도 잘 맞게나오는데
런타임 에러 나오는 이유가 뭘까요?
조언 부탁드립니다.
Exception in thread "main" java.util.IllegalFormatFlagsException: Flags = ' '
at java.util.Formatter$FormatSpecifier.checkText(Formatter.java:3037)
at java.util.Formatter$FormatSpecifier.(Formatter.java:2733)
at java.util.Formatter.parse(Formatter.java:2560)
at java.util.Formatter.format(Formatter.java:2501)
at java.io.PrintStream.format(PrintStream.java:970)
at java.io.PrintStream.printf(PrintStream.java:871)
at Main.main(Main.java:86)
최근 시도에서 계속 이렇게 오류가 나고 있습니다.
%%때문이었군요 이제는 WA네요 야신난다~~~