首页 热点资讯 义务教育 高等教育 出国留学 考研考公

C语言怎么通过方向键移动光标

发布网友 发布时间:2022-04-27 05:12

我来回答

2个回答

热心网友 时间:2022-06-26 18:37

可以用gotoxy函数移动光标。

1、函数名:gotoxy
    原型:extern void gotoxy(int x, int y);
    用法:#include <system.h>
    功能:将光标移动到指定位置说明:gotoxy(x,y)将光标移动到指定行y和列x。设置光标到文本屏幕的指定位置,其中参数x,y为文本屏幕的坐标。
    gotoxy(0,0)将光标移动到屏幕左上角
2、例程:

    //这个例子将在屏幕*输出“hello world”
    #include <stdio.h>
    #include <conio.h>
    #include <system.h>
    int main(){
        clrscr();
        gotoxy(35, 12);
        cputs("Hello world");
        getch();
        return 0;
    }

热心网友 时间:2022-06-26 18:37

#include <windows.h>

void set()
{
    HANDLE hOut, hIn;
    COORD pos= {0,13}; /* 光标的起始位(第1列,第12行)*/
    hOut = GetStdHandle(STD_OUTPUT_HANDLE);
    hIn = GetStdHandle(STD_INPUT_HANDLE);
    SetConsoleCursorPosition(hOut, pos);

    for(;;) {
        INPUT_RECORD ir;
        DWORD r;
        ReadConsoleInput(hIn, &ir, 1, &r);
        if ( r == 1 && ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown == TRUE ) {
            switch(ir.Event.KeyEvent.wVirtualKeyCode)
            {
                case 37:{pos.X--;}break;
                case 38:{pos.Y--;}break;
                case 39:{pos.X++;}break;
                case 40:{pos.Y++;}break;
            }
        }
        SetConsoleCursorPosition(hOut, pos);
    }
    return;
}

int main() {
    set();
}


干这种事情,getchar不行。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com