c++
가위바위보 구현하기
#include using namespace std; static const char* RockPaperScissors[] = { "가위", "바위", "보" }; int main() { int player, computer; int match = 1; int playerWinCount = 0, computerWinCount = 0, drawCount = 0; srand((int)time(NULL)); while (match < 11) { cout