标签:return use int play draw sele stream card ctc
[仅供测试用]
1 #include <iostream> 2 #include <cstdlib> 3 #include <Windows.h> 4 #include "cards.h" 5 #include "AI.h" 6 #include "user.h" 7 #include "player.h" 8 9 10 int main() 11 { 12 std::string ver("1.0"); 13 DISPLAY d_main(ver); 14 d_main.logo(); 15 CARD c_main(1,"D:\\cards.txt"); 16 c_main.display(); 17 //c_main.reset(); 18 c_main.display(); 19 AI ai_main(1,c_main); 20 PLAYER p_main(1); 21 p_main.selectcard(c_main); 22 d_main.draw(ai_main,p_main); 23 p_main.operate(ai_main,d_main); 24 d_main.draw(ai_main,p_main); 25 ai_main.decide(p_main,d_main); 26 d_main.draw(ai_main,p_main); 27 return 0; 28 }
标签:return use int play draw sele stream card ctc
原文地址:http://www.cnblogs.com/lostmatch/p/7979680.html