C语言起步简单的一些经典题目3

扫雷游戏

#include"game.h"

void Initboard(char board[ROWS][COLS], int rows, int cols, char set)

{

int i = 0;

int j = 0;

for (i = 0; i < rows; i++)

{

for (j = 0; j < cols; j++)

{

board[i][j] = set;

}

}

}

void DisplayBoard(char board[ROWS][COLS], int row, int col)

{

int i = 0;

int j = 0;

printf("-----------扫雷游戏-----------\n");

for (i = 0; i

{

printf("%d ", i);

}

printf("\n");

for (int i = 1; i

{

printf("%d ", i);

for (int j = 1; j

{

printf("%c ", board[i][j]);

}

printf("\n");

}

printf("-----------扫雷游戏-----------\n");

}

void SetMine(char board[ROWS][COLS], int row, int col)

{

int count = EASY_COUNT;

while (count)

{

int x = rand() % row + 1;

int y = rand() % col + 1;

if (board[x][y] == '0')

{

board[x][y] = '1';

count--;

}

}

}

static int get_mine(char mine[ROWS][COLS], int x, int y)

{

return mine[x + 1][y] + mine[x + 1][y + 1] + mine[x + 1][y - 1] + mine[x][y + 1] + mine[x][y - 1] + mine[x - 1][y + 1] +

mine[x - 1][y] + mine[x - 1][y - 1] - 8 * '0';

}

void FindMine(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col)

{

int x = 0;

int y = 0;

int win = 0;

while (win

{

printf("请输入你要扫雷的坐标:>\n");

scanf("%d %d", &x, &y);

if (x >= 1 && x = 1 && y

{

if (mine[x][y] == '1')

{

printf("很遗憾,你被炸死了!\n");

DisplayBoard(mine, row, col);

break;

}

else

{

int count = get_mine(mine, x, y);

show[x][y] = count + '0';

DisplayBoard(show, row, col);

win++;

}

}

else

{

printf("输入错误,请重新选择.");

}

}

if (win == row * col - EASY_COUNT)

{

printf("恭喜你,排雷成功\n");

DisplayBoard(mine, row, col);

}

}

#include

#include

#include

#define EASY_COUNT 10

#define COL 9

#define ROW 9

#define ROWS 11

#define COLS 11

void Initboard(char board[ROWS][COLS], int row, int col, char set);

void DisplayBoard(char board[ROWS][COLS], int row, int col);

void SetMine(char board[ROWS][COLS], int row, int col);

void FindMine(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col);

#include

#include"game.h"

#include"game.c"

void menu()

{

printf("\n");printf("1.play\n");printf("0.exit\n");printf("***\n");}void game(){char mine[ROWS][COLS];char show[ROWS][COLS];Initboard(mine, ROWS, COLS,'0');Initboard(show, ROWS, COLS,'');

DisplayBoard(show, ROW, COL);

SetMine(mine,ROW, COL);

//DisplayBoard(mine, ROW, COL);

FindMine(mine,show,ROW,COL);

}

int main()

{

srand((unsigned int)time(NULL));

int input = 0;

do

{

menu();

printf("请选择:>");

scanf("%d", &input);

switch (input)

{

case 1:

game();

break;

case 0:

printf("退出游戏\n");

break;

default:

printf("输入错误,请重新选择\n");

break;

}

} while (input);

return 0;

}

void print_(int n)乘法口诀表

{

int i=0;

for(i=1;i

{

int j=0;

for(j=1;j

{

printf("%d*%d=%-3d",i,j,i*j);

}

}

}

int main()

{

int n=0;

scanf("%d",&n);

print_(n);

return 0;

}

memcopy自我实现

struct S

{

char name[20];

int age;

};

void* my_memcpy(voiddest,const voidstr,size_t num)

{

voidret=dest;assert(dest!=NULL);assert(str!=NULL);while(num--){(char)dest=(char*)str;

++ (char*)dest;

++ (char*)str ;

}

return ret;

}

int main()

{

int arr1[]={1,2,3,4,5};

int arr2[5]={0};

struct S arr3[]={{"张三,20"},{"李四",30}};

struct S arr4[3]={0};

my_memcpy(arr3,arr4,sizeof(arr3));

// memcopy(arr1,arr2,sizeof(arr1));

return 0;

}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

アイシン

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值