심심풀이용.. 옴총 쉬우니까 두개ㅎㅎ..
https://www.acmicpc.net/problem/10039
평균점수
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include <iostream> using namespace std; int main() { int jumsu[5] = { 0, }; int sum = 0; for (int i = 0; i < 5; i++) { cin >> jumsu[i]; if (jumsu[i] < 40) { jumsu[i] = 40; } sum += jumsu[i]; } cout << sum / 5 << endl; } | cs |
https://www.acmicpc.net/problem/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 | #include <iostream> #define SIZE 100 using namespace std; int main() { int a, b, c; int abc = 0; int count_arr[10] = { 0, }; // 입력 및 변환 cin >> a >> b >> c; abc = a*b*c; while (abc != 0) { int number = abc % 10; abc /= 10; count_arr[number] += 1; } for (int i = 0; i < 10; i++) { cout << count_arr[i] << endl; } } | cs |
'NOTE > Algorithm' 카테고리의 다른 글
[알고리즘문제] acmicpc_벌집 (0) | 2018.04.01 |
---|---|
[알고리즘문제] acmicpc_단어의개수 (0) | 2018.04.01 |
[알고리즘] 에러의 종류 (펌) (0) | 2018.04.01 |
[알고리즘문제] DFS와 BFS (0) | 2018.04.01 |
[자료구조] 다이나믹 프로그래밍 강의 정리 (0) | 2018.04.01 |