C 구조체에서 클래스로 (기초)
C 프로그램으로 학생 정보를 입력하고 출력하는 문제를 생각해 보자. 학생 정보는 이름, 학년, 점수 세 개로 이루어져 있다. #include #include #include void main() { FILE *fp = NULL; char names[50][10]; int years[50]; int scores[50][3]; int count = 0; int i, j; fopen_s(&fp, "student.txt", "r"); if (fp == NULL) { printf("파일 열기 실패 - %s\n", "student.txt"); system("pause"); system("exit"); } while (!feof(fp)) { fscanf_s(fp, "%s", names[count], 10); fsca..
C++ << C & Java
2019. 11. 19. 21:41
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- TypeError
- 패턴
- Iterator
- CompareTo
- typedef
- 자바regex
- 이터러블
- contentEquals
- python exercise
- 스트링
- rust
- comparable
- APPEND
- sort key
- 스트링 +
- 지연계산
- max
- Lazy evaluation
- format
- follow
- ToString
- 이터레이터
- zip
- C++ 클래스
- Camel Style
- 콜렉션
- contains
- 동적바인딩
- python example
- indexof
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함