Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define _CRT_SECURE_NO_WARNINGS
- #include <stdio.h>
- #include <conio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <time.h>
- // -2 черная дамка, -1 черная шашка, 0 пустое поле, 1 белая шашка, 2 белая дамка
- int main() {
- int desk[8][8];
- for (size_t i = 0; i<8; i++)
- {
- for (size_t j = 0; j<8; j++)
- {
- printf("a[%d][%d] = ", i, j);
- scanf("%d", &desk[i][j]);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement