일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- C
- 파이썬
- c언어
- 코드엔진
- 초보
- CSS
- Beakjoon
- 그리디
- greedy
- C 언어
- 설명
- HTML
- 문자열
- 꾸준히
- 심화1
- 구현
- 입문
- VS
- 문제풀이
- Implemention
- implement
- 정리
- 친절한 설명
- Baekjoon
- 알고리즘
- C Programming
- Python
- 10926
- 10807
- Today
- Total
목록c언어 (22)
안경잡이 구루루
나: #include int main() { float score[1000],high=0,total=0; int N; scanf("%d", &N); for (int i = 0; i < N; i++) { scanf("%f", &score[i]); if (high < score[i]) high = score[i]; } for (int j = 0; j < N; j++) { score[j] = score[j] / high * 100.0; total += score[j]; } printf("%f", total /N); return 0; } 완성된 코드는 위와 같다. flaot 형태로 저장하지 않으면 출력할 때 이상한 값(0.0) 이 나와서 이것 때문에 푸느라 오래걸렸다. #include int main() { f..
https://www.acmicpc.net/problem/3052 나: #include int main() { int cnt = 0; int num[10]; for (int i = 0; i < 10; i++) { scanf_s("%d", &num[i]); num[i] = num[i] % 42; } for (int j = 0; j < 10; j++) { for (int k = j + 1; k < 10; k++) { if (num[j] == -1)break; if (num[j] == num[k]) num[k] = -1; } } for (int i = 0; i < 10; i++) { if (num[i] != -1) cnt++; } printf("%d", cnt); } 완성된 코드는 위와 같다. #include..
나: #include int main() { int a[3], change = 0; for (int i = 0; i a[j]) { change = a[i]; a[i] = a[j]; a[j] = change; } } } printf("%d", a[1]); return 0; } 완성된 코드는 위와 같다. #include int main() { int a[3], change = 0; for (int i = 0; i < 3; i++) { scanf_s("%d", a + i); } 입력 받을 개수가 총 3개로 정해져 ..