반응형 빙고게임1 [c언어]빙고게임[EASY] #include #include #include #include #pragma warning (disable : 4996) int Bingo[5][5] = { 0 }; int Player[5][5] = { 0 }; int AI[5][5] = { 0 }; int A_set[25] = { 0 }; int myLine = 0; int aiLine = 0; bool already; int x = 0; int count = 1; void LineCheck()//빙고체크 { myLine = 0; aiLine = 0; for (int i = 0; i < 5; i++) { if (Player[0][i] == 0 && Player[1][i] == 0 && Player[2][i] == 0 && Player[3][i] ==.. 2020. 4. 2. 이전 1 다음 반응형