一个简单打字游戏的设计(C语言)

需求:

生成的20个随机字符串由大小写组成,规则如下:

一个简单打字游戏的设计(C语言)_第1张图片

程序源码:

#include
#include
#include

void display();
void list_bulid();
char str[21];
int main(int argc, char const *argv[])
{
	/* code */
	display();
	return 0;
}
void display()
{
	printf("*****************************************\n");
	printf("*输入过程无法退出!                  	*\n");
	printf("*请按所给字母敲击键盘!    	     	*\n");
	printf("*按任意键开始测试,按下首字母开始计时!	*\n");
	printf("*输入出则以 _ 表示                   	*\n");
	printf("*****************************************\n");
	system("stty -icanon");//关闭缓冲区,输入字符无需按回车键直接接受
	getchar();
	printf("\b\n");
	list_bulid();
	return ;
}
/***********************************
建立一串字母,并对键盘输出进行处理的函数

************************************/
void list_bulid()
{
	int i = 0;
	int t;
	int right = 20;
	char c;
	time_t start,end;
	srand((unsigned)time(NULL));
	while(i < 20)
	{
		t=rand() % 2;
		if(t == 0)
			c ='a'+rand()%26;
		else
			c = 'A'+rand()%26;
		str[i] = c;
		i++;
		printf("%c",c);
	}
	printf("\n");
	system("stty -icanon");//关闭缓冲区,输入字符无需按回车键直接接受
	i = 0;
	while(i < 20)
	{
		c = getchar();
		if(i == 0) //计时开始
		{
			start = time(0);
		}
		//printf("%c --- %c -\n", str[i] , c);
		if(str[i] != c)
		{
			printf("\b_");
			right--;
		}
		//else printf("%c!", c);
		i++;
		//printf("%s\n",str );*/
	}
	end = time(0); //计时结束
	printf("\n完成输入!\n");
	i = end - start;
	printf("用时%d s\n", i);
	printf("正确率%.2lf %%", right/20.0 * 100);
	printf("按下Esc退出,空格键继续!\n");
	while(1)
	{
		c = getchar();
		i = c;
		if(c == ' ')
		{
			printf("\n");
			display();
		}
		else if(i == 27)
		{
			printf("\b");
			printf("\b");
			printf("\b");
			printf("\b");
			return ;
		}
		else
		{
			printf("\b");
		}
	}
}

 

你可能感兴趣的:(编程项目)