2021-01-21

//猜数字游戏 系统随机给出数字,请你猜出系统所给的数字。
#define _CRT_SECURE_NO_WARNINGS
//#include
//#include
//#include
//#include
//int main()
//{
// int i = 0;
// char password[20] = { 0 };
// // password 用来存放密码
// //假设密码是字符串"123456"
// for (i = 0; i < 3; i++)
// {
// printf(“请输入密码:”);
// scanf("%s", password);
// //两个字符串的比较不能用== 而应该是strcmp
// // strcmp-研究返回值
// if (strcmp(password,“123456”) == 0)
// {
// printf(“密码正确,登陆成功”);
// break;
// }
// else
// {
// printf(“密码错误”);
// }
// }
// if (i == 3)
// {
// printf(“三次密码错误,退出程序”);
// }
// return 0;
//}
//void menu()
//{
// printf("****************\n");
// printf("
1.play \n");
// printf("
0.exit \n");
// printf("
****************\n");
//}
//void game()
//{
// int random_num = rand() % 100 + 1;
// int input = 0;
// while (1)
// {
// printf(“请输入猜的数字>:”);
// scanf("%d", &input);
// if (input > random_num)
// {
// printf(“猜大了”);
// }
// else if (input < random_num)
// {
// printf(“猜小了”);
// }
// else
// {
// printf(“恭喜你,猜对了”);
// break;
// }
// }
//}

你可能感兴趣的:(游戏)