백준 14697 방배정하기
#include using namespace std; int main(){int A, B, C, N;int i = 1, j = 1, k = 1; // N의 값보다 작은 A, B, C의 배수를 arr배열에 저장하기 위함. bool existA = false, existB = false, existC = false; //arr 배열에 N보다 작은 A, B, C 배수를 저장을 완료하면 탈출하기 위함int arrA[301] = { 0, }, arrB[301] = { 0, }, arrC[301] = { 0, };scanf("%d %d %d %d", &A, &B, &C, &N);// 각 arr배열에 N보다 작은 A, B, C의 배수 저장while(true){if (arrA[i - 1] + A
2018. 5. 5.