发布时间:2021-11-24 16:19:47 作者:佚名 阅读:(65)
学习gotoxy()与clrscr()函数
#include void main(void) { clrscr();/*清屏函数*/ textbackground(2); gotoxy(1, 5);/*定位函数*/ cprintf("Output at row 5 column 1\n"); textbackground(3); gotoxy(20, 10); cprintf("Output at row 10 column 20\n"); }
欢迎分享转载→ 学习gotoxy()与clrscr()函数
© 2015-2021 - 吾爱编程网 版权所有 苏ICP备18033726号-1关于我们 - 网站声明 - 联系我们