码迷,mamicode.com
首页 > 其他好文 > 详细

猜数字小游戏

时间:2015-10-25 22:44:16      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:猜字小游戏

#include <stdio.h>

#include <stdlib.h>

#include <time.h>



void print_menu()

{

printf("**********************\n");

printf("******* 1.start ******\n");

printf("******* 0. exit ******\n");

printf("**********************\n");

}


int main()

{

printf("欢迎使用猜数字游戏\n");

int input = 1;

while (input)

{

print_menu();

printf("请选择>");

scanf("%d", &input);

switch (input)

{

case 1:

{

int n = 0;

int ch = 0;

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

n = rand() % 101;

while (1)

{

printf("请猜一个(0-100)直接的数\n");

scanf("%d", &ch);

if (ch > n)

{

printf("你猜大了\n");

}

else if (ch <n)

{

printf("你猜小了\n");

}

else

{

printf("恭喜你,猜对了\n");

break;

}

}

break;

}

default:

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

break;

}

}


system("pause");

return 0;

}


猜数字小游戏

标签:猜字小游戏

原文地址:http://10808695.blog.51cto.com/10798695/1706086

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!