Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- char velha[3][3] = {{'0','X','0'},
- {'X','0','X'},
- {'X',' ','0'}};
- // compara as linhas:
- if(velha[0][0] == velha[0][1] && velha[0][1] == velha[0][2])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- else if(velha[1][0] == velha[1][1] && velha[1][1] == velha[1][2])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- else if(velha[2][0] == velha[2][1] && velha[2][1] == velha[2][2])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- // compara as colunas:
- else if(velha[0][0] == velha[1][0] && velha[1][0] == velha[2][0])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- else if(velha[0][1] == velha[1][1] && velha[1][1] == velha[2][1])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- else if(velha[0][2] == velha[1][2] && velha[1][2] == velha[2][2])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- // compara as diagonais:
- else if(velha[0][0] == velha[1][1] && velha[1][1] == velha[2][2])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- else if(velha[0][2] == velha[1][1] && velha[1][1] == velha[2][0])
- printf("O ganhador foi \'%c\'", velha[0][0]);
- else
- printf("Nao houve ganhador");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement