반응형
#include <string>
#include <vector>
using namespace std;
int solution(int a, int b, bool flag) {
int answer = 0;
if(flag == true){
answer = a + b;
}
else{
answer = a-b;
}
return answer;
}
반응형
'프로그래머스(코딩테스트 연습)' 카테고리의 다른 글
프로그래머스/C++ 등차수열의 특정한 항만 더하기 (0) | 2023.09.25 |
---|---|
프로그래머스/C++ 코드 처리하기 (1) | 2023.09.24 |
프로그래머스/C++ 조건문자열 (0) | 2023.09.24 |
프로그래머스 홀짝에 따라 다른 값 변환하기 C++ (0) | 2023.09.23 |
프로그래머스 공배수 C++ (0) | 2023.09.23 |