map
#include #include #include using namespace std; struct SProduct { string Name; int Price; } arPro[]={ {"고소미",500},{"카스",400},{"네카페",250},{"라면",450}, {"88라이트",1900},{"불티나",300},{"스타킹",700},{"김치",2000}, {"신문",500},{"비타500",500},{"비타1000",1000},{"왕틀이",900}, {"치즈샌드",200},{"위스퍼",800},{"콘텍600",600},{"페리오치약",2200}, {"모나미볼펜",90},{"까페라떼",990},{"밧데리",1000},{"파이",250}, }; void main() { map mPro; map::itera..
2023. 12. 8.