900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > c语言作业做出金山打字功能 goldmountain.c

c语言作业做出金山打字功能 goldmountain.c

时间:2019-11-06 03:37:10

相关推荐

c语言作业做出金山打字功能 goldmountain.c

#include

#include

#include

#include

#include

#define NR(x) sizeof(x)/sizeof(x[0])

//在终端上打印信息

#define Print_Info_To_console(str,hOut,pos,x,y,color_type) \

SetConsoleTextAttribute(hOut, color_type); \

pos.X = x;\

pos.Y = y ;\

SetConsoleCursorPosition(hOut,pos); \

printf("%s",str);

//清屏

#define ClearScreen() \

system("cls");

#define TITLE "金山打字通"

enum

{

LEFT = 1 ,

RIGHT ,

BACKSPACE ,

ESC ,

Char,

};

int iindex = 0 ;

int max = 0 ;

char buffer[1024] = {0} ;

int Get_User_input(HANDLE hOut,char *ch) ;

void Show_string(HANDLE hOut,const char *text) ;

//窗口初始化

void HANDLE_init(HANDLE hOut);

//定义设置光标结构体变量

CONSOLE_CURSOR_INFO cci;

//定义默认的坐标位置

COORD pos = {0,0};

int main(void)

{

char *text = "WelCome to School ... Good Good Work ,Day Day Up !" ;

char ch ;

int ret ;

HANDLE hOut;

hOut = GetStdHandle(STD_OUTPUT_HANDLE);

HANDLE_init(hOut);

printf("\n%s\n",text);

Show_string(hOut,text);

while(1)

{

if(max >= strlen(text))

break ;

ret = Get_User_input(hOut,&ch) ;

if(ret == ESC)

break ;

Show_string(hOut,text);

}

//关闭窗口句柄

CloseHandle(hOut);

return 0 ;

}

//窗口初始化

void HANDLE_init(HANDLE hOut)

{

SetConsoleTitleA(TITLE);

//获取当前的句柄---设置为标准输出句柄

//获取光标信息

GetConsoleCursorInfo(hOut, &cci);

//设置光标大小

pos.X = 0 ;

pos.Y = 2 ;

cci.dwSize = 1;

//设置光标不可见 FALSE

cci.bVisible = 0;

//设置(应用)光标信息

SetConsoleCursorInfo(hOut, &cci);

}

static int __Get_User_input(HANDLE hOut,char *ch)

{

char tmp ;

int type = Char ;

//关闭回显

pos.X = 0 ;

pos.Y = 2 ;

GetConsoleCursorInfo(hOut, &cci);

cci.dwSize = 100;

cci.bVisible = 0;

SetConsoleCursorInfo(hOut, &cci);

tmp = getch() ;

switch(tmp)

{

case 27 : type = ESC ; break ;

case 8 : type = BACKSPACE ; break ;

case 75 : type = LEFT ; break ;

case 77 : type = RIGHT; break ;

}

*ch = tmp ;

//打开回显

pos.X = 0 ;

pos.Y = 2 ;

GetConsoleCursorInfo(hOut, &cci);

cci.dwSize = 100;

cci.bVisible = 1;

SetConsoleCursorInfo(hOut, &cci);

return type ;

}

int Get_User_input(HANDLE hOut,char *ch)

{

int type ;

type = __Get_User_input(hOut,ch);

switch(type)

{

case Char :

if(buffer[iindex] == '\0' )

buffer[iindex] = *ch ;

else

{

memmove(buffer+iindex+1 , buffer+iindex , max-iindex) ;

buffer[iindex] = *ch ;

}

iindex ++ ; max ++ ; break ;

case LEFT : if(iindex > 0) iindex -- ; break ;

case RIGHT : if(iindex < max) iindex ++ ; break ;

case BACKSPACE :

if(iindex > 0){

memmove(buffer+iindex-1 , buffer+iindex , max-iindex) ;

iindex -- ;

max -- ;

}

break ;

case ESC : return ESC ;

}

return 0 ;

}

void Show_string(HANDLE hOut,const char *text)

{

system("cls") ;

printf("\n%s\n",text) ;

int i ;

int errno_Num = 0 ;

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

{

if(buffer[i] == text[i])

{

SetConsoleTextAttribute(hOut, FOREGROUND_GREEN | 0x8);

printf("%c",buffer[i]);

}

else

{

SetConsoleTextAttribute(hOut, FOREGROUND_RED | 0x8);

printf("%c",buffer[i]);

errno_Num++ ;

}

}

pos.X = 0 ;

pos.Y = 2 ;

cci.dwSize = 100;

cci.bVisible = 1 ;

SetConsoleCursorPosition(hOut,pos);

SetConsoleCursorInfo(hOut, &cci);

SetConsoleTextAttribute(hOut,FOREGROUND_GREEN | 0x8);

pos.X = 0;

pos.Y = 15 ;

SetConsoleCursorPosition(hOut,pos);

printf("错误的个数:%d", errno_Num) ;

pos.X = 0;

pos.Y = 16 ;

SetConsoleCursorPosition(hOut,pos);

printf("总个数:%d", (int)strlen(text)) ;

pos.X = 0;

pos.Y = 17 ;

SetConsoleCursorPosition(hOut,pos);

printf("输入个数:%d", max) ;

pos.X = 0;

pos.Y = 18 ;

SetConsoleCursorPosition(hOut,pos);

printf("错误率:%.2f%%",((float)errno_Num)/((float)max)*100) ;

pos.X = iindex + 1 ;

pos.Y = 2 ;

cci.dwSize = 100;

cci.bVisible = 1 ;

SetConsoleCursorPosition(hOut,pos);

SetConsoleCursorInfo(hOut, &cci);

fflush(stdout);

}

一键复制

编辑

Web IDE

原始数据

按行查看

历史

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。