정답 개수:
0
틀린 개수:
0
실행 실패 개수:
10
2
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 3, in <module> print(T+'*'+i+1+'=')+print (T*(i+1)) ~^~~~ TypeError: unsupported operand type(s) for +: 'int' and 'str'
2 * 1 = 2 2 * 2 = 4 2 * 3 = 6 2 * 4 = 8 2 * 5 = 10 2 * 6 = 12 2 * 7 = 14 2 * 8 = 16 2 * 9 = 18
5
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 3, in <module> print(T+'*'+i+1+'=')+print (T*(i+1)) ~^~~~ TypeError: unsupported operand type(s) for +: 'int' and 'str'
5 * 1 = 5 5 * 2 = 10 5 * 3 = 15 5 * 4 = 20 5 * 5 = 25 5 * 6 = 30 5 * 7 = 35 5 * 8 = 40 5 * 9 = 45
6
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 3, in <module> print(T+'*'+i+1+'=')+print (T*(i+1)) ~^~~~ TypeError: unsupported operand type(s) for +: 'int' and 'str'
6 * 1 = 6 6 * 2 = 12 6 * 3 = 18 6 * 4 = 24 6 * 5 = 30 6 * 6 = 36 6 * 7 = 42 6 * 8 = 48 6 * 9 = 54