首页 > 作文

C语言SetConsoleCursorPosition函数使用方法

更新时间:2023-04-04 01:01:11 阅读: 评论:0

目录
函数接口作用:测试代码1测试结果1测试代码2测试无锡市天一中学结果2

函数接口

bool winapi tconsolecursorposition(    _in_ handle hconsoleoutput,    _in_ coord dwcursorposition);

作用:

实现控制台光标定位

测试代码1英语四级词汇

#include<stdio.h>#include<windows.h>int main(){    coord pos = { 15,5 };    handle hout = gets推荐书籍tdhandle(std_output_handle);    tconsolecursorposition(hout, pos);    tconsoletextattribute(hout, 0x01 | 0x05);    printf("helloworld!\n");    return 0;}

测试结果1

测试代码2

#include<stdio.h>#inclu祖国在我心中演讲稿500字de<windows.h>int main(){    coord pos = { 0,0 };    handle hout = getstdhandle(std_output_handle);    tconsoletextattribute(hout, 0x01 | 0x05);    for (int i = 0; i < 20; i++){       pos.x = i;       pos.y = i;       tconsolecursorposition(hout, pos);       printf("%d%d:helloworld!\n", pos.x性病科, pos.y);       sleep(1000);    }    return 0;}

测试结果2

到此这篇关于c语言tconsolecursorposition函数使用方法的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-04 01:01:10,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/a9deb59587458902476ba67fe1750fd8.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:C语言SetConsoleCursorPosition函数使用方法.doc

本文 PDF 下载地址:C语言SetConsoleCursorPosition函数使用方法.pdf

标签:测试   代码   函数   接口
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图