游標函式的使用 gotoxy()

2021-10-16 19:44:02 字數 438 閱讀 1850

gotoxy 函式,用於螢幕輸出,功能是將游標移動到螢幕指定位置。在螢幕的左上角被定義為游標的座標原點 (0, 0),橫向為 x 軸,縱向為 y 軸。

函式原型宣告: void gotoxy(int x, int y);

函式的標頭檔案:#include

用法:gotoxy(x, y) 將游標移動到指定列座標 x 和行座標 y。設定游標到文字螢幕的指定位置,其中引數 x,y 為文字螢幕的座標。gotoxy(0,0)將游標移動到螢幕左上角。

void

gotoxy

(short x,

short y)

;setconsolecursorposition

(getstdhandle

(std_output_handle)

, coord)

;}

c語言中 gotoxy 函式的使用

include include void gotoxy int x,int y handle hout getstdhandle std output handle 獲取標準輸出裝置控制代碼 setconsolecursorposition hout,pos 兩個引數分別是指定哪個窗體,具體位置 i...

oracle 中函式,游標的使用

建立函式並且呼叫 create function fun1 v in ename varchar2 return number is v annual sal number begin select sal nvl comm,0 13 into v annual sal from emp where...

Cursor游標(游標)的使用

為了處理sql語句,oracle 將在記憶體中分配乙個區域,這就是上下文區。這個區包含了已經處理完的行數 指向被分析語句的指標,整個區是查詢語句返回的資料行集。游標就是指向上下文區控制代碼或指標。兩種游標 一 顯示游標 需要明確定義!顯示游標被用於處理返回多行資料的select 語句,游標名通過cu...