C语言中 gotoxy有什么作用 5
7个回答
展开全部
是光标定位函数,在windows.h中,不过还得写一下函数,以下参考:
#include<windows.h>
int Gotoxy(int x,int y)
int Gotoxy(int x, int y) //定位光标位置
{
HANDLE handle; //定义句柄变量handle
COORD coord; //定义结构体coord (坐标系coord)
coord.X = x; //横坐标x
coord.Y = y; //纵坐标y
handle = GetStdHandle(STD_OUTPUT_HANDLE); //获取控制台输出句柄(值为-11)
SetConsoleCursorPosition(handle, coord); //移动光标
}
int main()
{
Gotoxy(x,y);//x为横坐标,即为所在行数;y为纵坐标,即为所在列数
}
展开全部
指定跳转到标签,找到标签后,程序将处理从下一行开始的命令。
语法:goto label (label是参数,指定所要转向的批处理程序中的行)
C语言中goto语句的用法
Sample:(2005MSDN上的例子)
#include <stdio.h>
int main()
{
int i, j;
for ( i = 0; i < 10; i++ )
{
printf( "Outer loop executing. i = %d\n", i );
for ( j = 0; j < 3; j++ )
{
printf( " Inner loop executing. j = %d\n", j );
if ( i == 5 )
goto stop;
}
}
/* This message does not print: */
printf_s( "Loop exited. i = %d\n", i );
stop: printf( "Jumped to stop. i = %d\n", i );//stop: 就是标签
return 0;
}
建议不要使用goto语句
语法:goto label (label是参数,指定所要转向的批处理程序中的行)
C语言中goto语句的用法
Sample:(2005MSDN上的例子)
#include <stdio.h>
int main()
{
int i, j;
for ( i = 0; i < 10; i++ )
{
printf( "Outer loop executing. i = %d\n", i );
for ( j = 0; j < 3; j++ )
{
printf( " Inner loop executing. j = %d\n", j );
if ( i == 5 )
goto stop;
}
}
/* This message does not print: */
printf_s( "Loop exited. i = %d\n", i );
stop: printf( "Jumped to stop. i = %d\n", i );//stop: 就是标签
return 0;
}
建议不要使用goto语句
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
goto是跳转语句,xy是自己定义的一个“名字,”你不会买本书看啊。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
跳转语句,从一个语句跳转到另另一个语句
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
好像是C语言的graphics库里面的函数,就是把输出点定位在某个坐标
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询