목록프로그래밍/C++ (2)
y0u_bat
C++ Language Study 1st
C++ Language Study 1st1. Print#include using namespace std; int main() { cout input; cout
프로그래밍/C++
2016. 7. 9. 22:56
[열혈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