• 关灯游戏,谁有简单的代码啊


    int light[4][4] = {
    {1, 1, 1, 1},
    {1, 1, 1, 1},
    {1, 1, 1, 1},
    {1, 1, 1, 1}
    };
    int x = 0, y = 0, sum = 0;
    for (int i = 0; i < 4; i ++) {
    for (int j = 0; j < 4; j ++) {
    printf("%d ", light[i][j]);
    sum += light[i][j];
    }
    printf("\n");
    }
    while (sum != 0){

    scanf("%d, %d", &x, &y);
    if (x > 4 || y > 4 || x <= 0 || y <= 0) {
    printf("请重新输入坐标:");
    scanf("%d, %d", &x, &y);
    }
    x --;
    y --;

    light[x][y] = (light[x][y] + 1) % 2;
    if (x > 0 && x < 3) {
    light[x - 1][y] = (light[x - 1][y] + 1) % 2;
    light[x + 1][y] = (light[x + 1][y] + 1) % 2;

    }
    if (x == 0) {
    light[x + 1][y] = (light[x + 1][y] + 1) % 2;
    }
    if (x == 3) {
    light[x - 1][y] = (light[x - 1][y] + 1) % 2;
    }
    if (y > 0 && y < 3) {
    light[x][y - 1] = (light[x][y - 1] + 1) % 2;
    light[x][y + 1] = (light[x][y + 1] + 1) % 2;
    }
    if (y == 0) {
    light[x][y + 1] = (light[x][y + 1] + 1) % 2;
    }
    if (y == 3) {
    light[x][y - 1] = (light[x][y - 1] + 1) % 2;
    }
    for (int i = 0; i < 4; i ++) {
    for (int j = 0; j < 4; j ++) {
    printf("%d ", light[i][j]);
    sum += light[i][j];
    }
    printf("\n");
    }
    }
    printf("恭喜您,终于玩完了!");

  • 相关阅读:
    MySQL数据库初识
    Python中面向对象初识到进阶
    python 函数进阶
    Python 函数的初识
    Python的发展与应用
    什么是产品经理 以及职责
    I/O----复制文本文件
    获取次日日期(主要两种方法)
    vector以及array和数组
    编辑软件注释快捷键
  • 原文地址:https://www.cnblogs.com/Azazqing/p/3661415.html
Copyright © 2020-2023  润新知