실행 실패 (제출 코드 컴파일 에러)
Main.cpp: In function ‘int main()’: Main.cpp:10:17: error: no match for ‘operator/’ (operand types are ‘std::vector<int>’ and ‘int’) 10 | while(a / 10 > 0) | ~ ^ ~~ | | | | | int | std::vector<int> Main.cpp:12:27: error: no match for ‘operator%’ (operand types are ‘std::vector<int>’ and ‘int’) 12 | int t = a % 10; | ~ ^ ~~ | | | | | int | std::vector<int> Main.cpp:13:23: error: no match for ‘operator/’ (operand types are ‘std::vector<int>’ and ‘int’) 13 | a = a / 10; | ~ ^ ~~ | | | | | int | std::vector<int> Main.cpp:16:29: error: expected primary-expression before ‘;’ token 16 | for (int i = 0; i < ; i++) | ^ Main.cpp:18:27: error: no match for ‘operator/’ (operand types are ‘std::vector<int>’ and ‘int’) 18 | int j = a / 10 + 1; | ~ ^ ~~ | | | | | int | std::vector<int>
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
비공개 코드입니다. 코드 작성자만 볼 수 있습니다.
반례를 발견하지 못했습니다.