언리얼(Unreal)/코딩테스트
24.12.19
오늘의 문제입니다.리스트에 해당 문자가 있는지 확인하는 단순한 if else 구문인데요 이미 답은 적혀있습니다.#include using namespace std;int main(void) { string code; cin >> code; string last_four_words = code.substr(code.size()-4, 4); if(last_four_words == "_eye"){ cout 이런식으로 되어있는데요 이때 해답과 저의 답은 같은데 오답처리가 되길래 뭔가 오류가 걸린 것 같네요.문제의 답이 저에게 도움이 됐다기보다는 string last_four_words = code.substr(code.size()-4, 4);이 한 줄이 저에게 더 도움 됐는데요..
2024. 12. 19. 20:14