https://programmers.co.kr/learn/challenges 코딩테스트 연습 | 프로그래머스 스쿨 개발자 취업의 필수 관문 코딩테스트를 철저하게 연습하고 대비할 수 있는 문제를 총망라! 프로그래머스에서 선발한 문제로 유형을 파악하고 실력을 업그레이드해 보세요! school.programmers.co.kr #include #include using namespace std; int solution(string b) { int answer = 0; int a,bc; char op; int s = b.find(' '); a = stoi(b.substr(0, s)); op = b[s+1]; bc= stoi(b.substr(s+3)); if(op=='*')return a*bc; else if(op..