코딩테스트/프로그래머스(C++)_Level.0
[프로그래머스/C++] Lv.0 조건 문자열
문제 코드 #include int solution(std::string ineq, std::string eq, int n, int m) { int answer = 0; char c[2]; strcpy(c, (ineq + eq).c_str()); if (strcmp(c, ">=") == 0) { answer = (n >= m); } else if (strcmp(c, "!") == 0) { answer = (n > m); } else { answer = (n < m); } return answer; } // 다른 사람 풀이 //int solution(string ineq, string eq, int n, int m) { // string oper = ineq + eq; // if (oper == "=") /..