프로그래밍67 백준 2577 숫자의 개수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 #include int main() { int a = 0; int b = 0; int c = 0; int input = 0; int result = 0; int list[10] = { 0 }; int idx = 0; scanf("%d%d%d", &a, &b, &c); result = a * b * c; while (result > 0) { idx = result; idx %= 10; //1의자리수 result /= 10; list[idx]++; //해당 idx ++ } for (int i = 0; i 2019. 9. 2. 백준 2920 음계 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 #include #include using namespace std; string GetString(int list[] , int size) { string str = ""; for (int idx = 0; idx cs 2019. 8. 30. 백준2562 최대값 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 #include int GetMaxNum(int list[], int size); int main() { const int n = 9; int list[n] = {0,}; int input = 0; int temp = 0; int index = 0; for (int idx = 0; idx cs 2019. 8. 30. 백준 1110 더하기 사이클 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 #include int main() { int a = 0; int count = 0; int result = -1; int temp = 0; scanf("%d", &a); temp = a; while (result != a /*&& count cs 처음으로 맨붕온 문제 ;; 원인 문제에서 0보다 크거나 같고 2019. 8. 26. 이전 1 ··· 8 9 10 11 12 13 14 ··· 17 다음