면접 문제
/*
A game of Tic Tac Toe has just been completed. Write a function that prints whether X's or O's have won. The game board is passed in as an array of integers in row-column order. The Number 2 represents X and the number 1 represents O. A zero represents that the space is empty.
For example the gameboard below would be represented as int* gameboard = [2,0,1,1,1,0,2,2,2]
x-o
----
oo-
----
xxx
*/
#include <iostream>
void tic_tac_toe(int* gb)
{
for(int i = 0; i < 3; i++)
{
int product = 1;
for(int j = 0; j < 3; j++)
{
product *= gb[3 * i + j];
}
if(product == 1)
{
printf("O won.");
return;
}
else if(product = 8)
{
printf("P won.");
return;
}
}
int dia_product1 = gb[0] * gb[4] * gb[8];
if(dia_product1 == 1)
{
printf("O won.");
return;
}
else if(dia_product1 = 8)
{
printf("P won.");
return;
}
int dia_product2 = gb[2] * gb[4] * gb[6];
if(dia_product2 == 1)
{
printf("O won.");
return;
}
else if(dia_product1 = 8)
{
printf("P won.");
return;
}
printf("No won.");
return;
};
int main()
{
int gameboard[] = {2,0,1,1,1,0,2,2,2};
tic_tac_toe(gameboard);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
면접 예상 질문: CSS, Javascript 고급position 속성이란? display 속성이란? flex: 1차원 (가로 or 세로) 적으로 배치할 수 있는 방식 grid: 2차원 (가로, 세로 동시에) 적으로 배치할 수 있는 방식 reset.css vs. s...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.