POS Project complete version
#include "stdafx.h"#include #include struct Object {std::string objName;unsigned int objPrice;}; struct Order {Object *pList;unsigned int count; void AddObject(Object *pObj);void DeleteObject(int n);void Free(void);}; void Run(bool bPrint); Order *pList;unsigned int count;unsigned int total; Object objList[] = {"사과", 100,"배", 200}; void PrintOrder(void);void AddOrder(void);void EditOrder(void);v..
카테고리 없음
2018. 2. 2.