프로그래밍/알고리즘18 백준 평균 1546 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 #include int GetMaxScore(int maxScore , float list[] , int size) { maxScore = 0; for (int idx = 0; idx maxScore) { maxScore = list[idx]; } } return maxScore; } float GetAverage(float average, int score, float list[], int size) { for (int idx = 0.. 2019. 9. 3. 백준 3052 나머지 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 #include int main() { const int size = 10; bool list[42] = { false }; int input = 0; int count = 0; for (int i = 0; i cs 2019. 9. 2. 백준 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. 이전 1 2 3 4 5 다음