c语言窗口炸弹代码,C语言实现数字炸弹小游戏

本文实例为大家分享了C语言实现数字炸弹小游戏的具体代码,供大家参考,具体内容如下

使用的是C语言

# 内容

#include

#include

int main(){

//变量

char c_TheRequest = 1;//开始界面的字符

int in_Deltar = 1,in_EnteredNumber,in_Sig;//游戏中输入数字及其判定所需要的数字

int in_GivenNum = 0,in_An = 0,in_Bn = 0;//出的数字,和数字区间

int in_Mid1,in_Mid2;//用来交换An、Bn的值以满足An

int in_DistantAn,in_DistantBn;//An与Bn离num的距离

int in_TemporaryAnSaver,in_TemporaryBnSaver;//临时用于比较的An、Bn储存器

//开始界面

printf("If you just happen to open the game and do not have the intention to play it.\n");

printf("You can enter a q to quit or you can enter an s to start the game now!\n");

scanf("%c",&c_TheRequest);

getchar();

while (c_TheRequest != 's' && c_TheRequest != 'q'){

printf("Please do not enter a irrelevant letter.\n");

scanf("%c",&c_TheRequest);

getchar();

}

if(c_TheRequest == 'q'){

printf("So sad then.Hope you can play with me next time.\n");

getchar();

}

//游戏

if(c_TheRequest == 's'){

//输入“数字炸弹”

system("cls");

printf("(^ o ^) # *** NOW LET\'S PLAY! *** # (^ o ^)\nAttention!You can only enter numbers in the following steps.\nEnter to start.\n");

getchar();

system("cls");

printf("Game : The number boom!(Another Life.)\n");

printf("Rule:\n");

printf("The first player should enter a number.Then he should give to numbers and guarantee the number above is between them.\n");

printf("The rest should guess and enter the numbers.And the one who enter the exact number the first player entered\n");

printf("is supported to be the winner!\n");

printf("Please Enter a number to start the game.(You is ought not to expose it to other players.The number should bigger than 0.)\n");

printf("__________\b\b\b\b\b\b\b\b\b\b\b");

while(scanf("%d",&in_GivenNum) != 1 || in_GivenNum < 0){

system("cls");

printf("Please Enter a NUMBER which is bigger than 0.\n");

printf("num:___________\b\b\b\b\b\b\b\b\b\b\b");

getchar();

}

system("cls");

//判定是否为数字

//输入“数字炸弹”所在的区间

printf("And where is the number?Please enter two numbers,and ensure that the number above is between them.\n");

printf("Additionally,there should be at least 100 numbers between the two numbers you will enter.\n");

do{

printf("num = %d\n",in_GivenNum);

printf("A:__________\b\b\b\b\b\b\b\b\b\b");

while(scanf("%d",&in_An)!=1){

printf("Please Enter a NUMBER which is bigger or smaller than the \"num\"!!!!\n");

printf("A:__________\b\b\b\b\b\b\b\b\b\b");

scanf("%d",&in_An);

getchar();

}

printf("B:__________\b\b\b\b\b\b\b\b\b\b");

while(scanf("%d",&in_Bn)!=1){

printf("Please Enter a NUMBER which is bigger or smaller than the \"num\"!!!!\n");

printf("B:__________\b\b\b\b\b\b\b\b\b\b");

scanf("%d",&in_Bn);

getchar();

}//记录An和Bn

if(!(( in_An < in_GivenNum && in_Bn > in_GivenNum ) || ( in_An > in_GivenNum && in_Bn < in_GivenNum ))){

system("cls");

printf("Your math is so poor.Enter a again!\nThe \"num\" must be between the two numbers.\n");

printf("Enter to restart.\n");

getchar();

getchar();

system("cls");

}//区间如果错误就会报错

}while(!(( in_An < in_GivenNum && in_Bn > in_GivenNum ) || ( in_An > in_GivenNum && in_Bn < in_GivenNum )));//判定区间是不是对的

//排序

in_Mid1 = (in_An > in_Bn)?in_Bn : in_An;

in_Mid2 = (in_Bn > in_An)?in_Bn : in_An;

in_An = in_Mid1;

in_Bn = in_Mid2;

//开始猜数字

system("cls");

printf("Now the game starts!\n");

printf("The number is somewhere between %d and %d\n",in_An,in_Bn);

printf("Please enter the number.\n");

printf("__________\b\b\b\b\b\b\b\b\b\b");

while(in_Deltar != 0){

while(scanf("%d",&in_EnteredNumber)!=1){

printf("Please Enter a NUMBER!!!!\n");

scanf("%d",&in_EnteredNumber);

getchar();

}//判断是否为数字

//差的运算

in_Deltar = ((in_GivenNum - in_EnteredNumber)<0)?in_EnteredNumber - in_GivenNum:in_GivenNum - in_EnteredNumber;

in_Sig = in_GivenNum - in_EnteredNumber;

in_DistantAn = in_GivenNum - in_An;

in_DistantBn = in_Bn - in_GivenNum;

//判定差的大小

if(in_Deltar >= 1000){

if(in_Sig > 0)

printf("Too small!Next!\n");

else

printf("Too big!Next!\n");

}

else if(in_Deltar >= 100){

if(in_Sig > 0)

printf("Small.Next!\n");

else

printf("Big.Next!\n");

}

else if(in_Deltar >= 10){

if(in_Sig > 0)

printf("A little small.Next!\n");

else

printf("A little big.Next!\n");

}

else if(in_Deltar > 0){

printf("Almost there!NEXT!!!\n");

}

//临时存储,以便后面判断所给数字是否满足条件

in_TemporaryAnSaver = in_An;

in_TemporaryBnSaver = in_Bn;

if(( in_Deltar < in_DistantAn && in_Sig > 0 ) || ( in_Deltar < in_DistantBn && in_Sig < 0 )){

if(in_Sig > 0)

in_An = in_EnteredNumber;

else

in_Bn = in_EnteredNumber;

}//这是修改上下限

if((in_TemporaryAnSaver == in_An && in_TemporaryBnSaver == in_Bn) && in_Deltar){

system("cls");

printf("Do not cheat!\nYou should play it again.\n");

}//判定所猜的数字是否在区间内

if(in_Deltar == 0)

break;//猜中

printf("Enter to continue.\n");

getchar();

getchar();

system ("cls");

printf("Between %d and %d\n__________\b\b\b\b\b\b\b\b\b\b",in_An,in_Bn);//区间修正

}

printf("You are the one !!!");

getchar();

getchar();

}

}

总结

学习C的时候为了巩固所学知识而编得一个小游戏,内容全英文。

小编再为大家分享一段代码:

#define _CRT_SECURE_NO_WARNINGS 1

#include

#include

#include

#include

void menu()

{

printf("###########################\n");

printf("### 1. play 0. exit ###\n");

printf("###########################\n");

}

void game()

{

//1.生成一个随机数

int ret = 0;

int guess = 0;

//拿时间戳来设置随机数的生成起点 //时间戳——(当前计算机的时间-计算机的起始时间(1970.1.1.0时0分0秒))=(xxxx)秒

//time_t

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

ret=rand()%100+1; //生成随机数 0---0x7fff(32767)

//printf("%d\n",ret);

//2.猜数字

while (1)

{

printf("请猜数字: ");

scanf("%d", &guess);

if (guess > ret)

{

printf("big\n");

}

else if (guess < ret)

{

printf("small\n");

}

else

{

printf("you are die\n");

break;

}

}

}

int main()

{

int input = 0;

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

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;

}

更多有趣的经典小游戏实现专题,分享给大家:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/564154.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++ 文本文件的读取和写入

使用文件流对象打开文件后&#xff0c;文件就成为一个输入流或输出流。对于文本文件&#xff0c;可以使用 cin、cout 读写。 流的成员函数和流操纵算子同样适用于文件流&#xff0c;因为 ifstream 是 istream 的派生类&#xff0c;ofstream 是 ostream 的派生类&#xff0c;fs…

C++ 移动和获取文件读写指针

在读写文件时&#xff0c;有时希望直接跳到文件中的某处开始读写&#xff0c;这就需要先将文件的读写指针指向该处&#xff0c;然后再进行读写。 ifstream 类和 fstream 类有 seekg 成员函数&#xff0c;可以设置文件读指针的位置&#xff1b;ofstream 类和 fstream 类有 seekp…

程序设计基础——c语言篇,C语言程序设计基础篇.ppt

C语言程序设计基础篇C 语言程序设计—基础篇 第 2 章 数据类型和输入输出 2.1 数据类型 著名计算机科学家沃思提出&#xff1a; 程序&#xff1d;数据结构&#xff0b;算法 例如&#xff1a;学生各科成绩及总分排队问题。 成绩存放 –– 数据结构 排队方法 –– 算法 在此, 存放…

文件的文本打开方式和二进制打开方式的区别

在 UNIX/Linux 平台中&#xff0c;用文本方式或二进制方式打开文件没有任何区别。 在 UNIX/Linux 平台中&#xff0c;文本文件以\n&#xff08;ASCII 码为 0x0a&#xff09;作为换行符号&#xff1b;而在 Windows 平台中&#xff0c;文本文件以连在一起的\r\n&#xff08;\r的…

c语言scanf函数隐藏的缓冲区,零基础学C语言 笔记四 Scanf函数清除缓冲区

Scanf函数清除缓冲区之前涉及到scanf会先到缓冲区看看是否存在数据&#xff0c;若存在数据&#xff0c;就直接拿缓冲区的数据过来使用&#xff0c;这就涉及到了一个问题&#xff0c;那如果缓冲区的数据不是我想要的呢&#xff1f;方法一&#xff1a;我们用scanf吸收掉我们的代码…

c语言中exchange函数,exchange

exchange描述 (Description)它原子地替换原子对象的值并获得先前保存的值。声明 (Declaration)以下是std :: atomic :: exchange的声明。T exchange( T desired, std::memory_order order std::memory_order_seq_cst );C11T exchange( T desired, std::memory_order order st…

C++ 流类和流对象

程序中常用的 cin 和 cout&#xff0c;分别用于从键盘输入数据和向屏幕输出数据&#xff08;简称为标准 I/O&#xff09;。除此之外&#xff0c;程序还可以从文件中读入数据&#xff0c;以及向文件中写入数据&#xff08;简称为文件 I/O)。 数据输入和输出的过程也是数据传输的…

c语言float判断相等,c/c++ 比较两个浮点数相等

首先&#xff0c;两个 if 是一样的。浮点数和整数比较时&#xff0c;整数被转为浮点数。然后&#xff0c;i 为什么不等于 10.0&#xff1f;因为它只会等于这些值&#xff1a;>>> def gen():... i 0... while i < 10:... i 0.1... yield i...>>> L list…

C++ cout格式化输出

希望按照一定的格式进行输出&#xff0c;如按十六进制输出整数&#xff0c;输出浮点数时保留小数点后面两位&#xff0c;输出整数时按 6 个数字的宽度输出&#xff0c;宽度不足时左边补 0&#xff0c;等等。C 中的 cout 对象则使用流操作算子&#xff08;你也可以叫做格式控制符…

C语言按各科分数段统计人数,(更新啦)学校学生成绩统计通用模板(科目、分数、统计分数段等均可自定,班级数、学生人数不受限制)...

更新说明&#xff1a;1、增加了导入、导出数据功能。2、该功能可以实现版本更新时不用手动复制数据&#xff0c;可实现一键导入导出。导语微信号☞gdpc-service这是一款适用于学校平时统一考试成绩统计表。这是长期根据学校的需求设计出的成绩统计&#xff0c;学生成绩清晰明了…

C++ 输出单个字符

在 C 程序中一般用 cout 和输出运算符 << 实现输出&#xff0c;cout 流在内存中有相应的缓冲区。但有时用户还有特殊的输出需求&#xff0c;例如只输出一个字符。 ostream 类除了提供上一节介绍过的用于格式控制的成员函数外&#xff0c;还提供了专门用于输出单个字符的…

ndows10同时打印多份文档,Windows10如何同时重命名多个文件

在Win10系统中整理重要文件时&#xff0c;很多用户都会对文件进行重命名&#xff0c;以便节省更多的时间。而如果文件数量非常多的话&#xff0c;我们就需要对其进行批量重命名。那么&#xff0c;这该如何操作呢&#xff1f;今天&#xff0c;小编就给大家分享一下Win10系统同时…

C++ 读取结束的判断

cin 可以用来从键盘输入数据&#xff1b;将标准输入重定向为文件后&#xff0c;cin 也可以用来从文件中读入数据。在输入数据的多少不确定&#xff0c;且没有结束标志的情况下&#xff0c;该如何判断输入数据已经读完了呢&#xff1f; 从文件中读取数据很好办&#xff0c;到达…

c语言指针算法分析怎么写,什么叫指针算法啊??

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼Pointer arithmetic should not be used.This rule refers to explicitly calculating pointer values. Any such pointer value then has thepotential to access unintended or invalid memory addresses. This is an area where…

C++ 读取单个字符

get() 是 istream 类的成员函数。 int get();此函数从输入流中读入一个字符&#xff0c;返回值就是该字符的 ASCII 码。如果碰到输入的末尾&#xff0c;则返回值为 EOF。 EOF 是 End of File 的缩写。istream 类中从输入流&#xff08;包括文件&#xff09;中读取数据的成员函…

C++ 读入一行字符串

getline() 是 istream 类的成员函数&#xff0c;它有如下两个重载版本&#xff1a; istream & getline(char* buf, int bufSize); istream & getline(char* buf, int bufSize, char delim);第一个版本从输入流中读取 bufSize-1 个字符到缓冲区 buf&#xff0c;或遇到\…

C语言数理逻辑题目,数学逻辑推理题整理,看看你能答对多少

年龄的秘密A、B、C三人的年龄一直是一个秘密.将A的年龄数字的位置对调一下,就是B的年龄;C的年龄段两倍是A与B两个年龄的差数;而B的年龄是C的10倍.请问&#xff1a;A、B、C三人的年龄各是多少?失误的程序员高先生是一个高级程序员&#xff0c;但是他最近设计的三款机器人却出了…

C++跳过(忽略)指定字符

ignore() 是 istream 类的成员函数&#xff0c;它的原型是&#xff1a; istream & ignore(int n 1, int delim EOF);此函数的作用是跳过输入流中的 n 个字符&#xff0c;或跳过 delim 及其之前的所有字符&#xff0c;哪个条件先满足就按哪个执行。两个参数都有默认值&…

c语言题库325,2012年二级C语言笔试模拟325

单项选择题1. 线性表L&#xff1a;(a1&#xff0c;a2&#xff0c;a3&#xff0c;…&#xff0c;ai&#xff0c;…&#xff0c;an)&#xff0c;下列说法正确的是( )。A) 每个元素都有一个直接前件和直接后件B) 线性表中至少要有一个元素C) 表中诸元素的排列顺序必须是由小到大…

C++ 查看输入流中的下一个字符

peek() 是 istream 类的成员函数&#xff0c;它的原型是&#xff1a; int peek();此函数返回输入流中的下一个字符&#xff0c;但是并不将该字符从输入流中取走相当于只是看了一眼下一个字符&#xff0c;因此叫 peek。 cin.peek() 不会跳过输入流中的空格、回车符。在输入流已…