반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- implement
- HTML
- 친절한 설명
- 구현
- 파이썬
- 정리
- Beakjoon
- CSS
- 10807
- C 언어
- C
- 꾸준히
- greedy
- Implemention
- Python
- 10926
- 알고리즘
- 그리디
- 문자열
- VS
- 백준
- c언어
- 설명
- Baekjoon
- 심화1
- 문제풀이
- 초보
- 입문
- 코드엔진
- C Programming
Archives
- Today
- Total
목록1546 (1)
안경잡이 구루루
백준 1546 ( 평균 ) [ C programming ]
나: #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..
C언어(C programming)/문제풀이(백준,BaekJoon)
2020. 7. 4. 18:44