y0u_bat
[2015.03.05] 일기
보호되어 있는 글입니다.
일기+계획
2016. 3. 6. 16:37
해킹캠프 13회 - equations 풀이
방정식나오는 문제200개 방정식의 해를 구하면 된다. 풀이
System
2016. 2. 28. 16:41
[열혈C++] 단계별 OOP 프로젝트 1단계
info.h123456789101112131415161718192021222324typedef struct bank{ int no; int id; int money; char name[100]; struct bank *prev; struct bank *next;} Bank; typedef struct LIST{ struct bank *head,*tail;} List; void init(List *list);void insert_id(List *list);void insert_money(List *list);void out_money(List *list);void print_info(List *list);int menu_select();Bank *serach_id(List *list,int id); Col..
프로그래밍/C++
2016. 2. 26. 03:45