백준 문제 풀이34 [백준 1001] A-B https://www.acmicpc.net/problem/1001 해설 저번 문제인 A+B와 매우 유사하다. (A+B부분을 A-B로만 바꿔주면 해결된다.) #include using namespace std; int main(){ int a,b; cin >> a >> b; cout 2020. 3. 19. [백준 1000] A+B https://www.acmicpc.net/problem/1000 해설 문제는 간단하다. 말 그대로 A+B를 출력하면 된다. #include using namespace std; int main(){ int a,b; cin >> a >> b; cout 2020. 3. 19. 이전 1 ··· 6 7 8 9 다음