CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - gotoxy
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - gotoxy - List
[
ComboBox
]
wnl-c
DL : 0
可以在VC下运行的万年历,解决了在VC下不能解决的gotoxy函数问题-VC can run the hefty almanac, solves the VC will not solve the problem gotoxy function
Date
: 2008-10-13
Size
: 14.59kb
User
:
醒目
[
Other resource
]
zhaomigong_c
DL : 0
简单的演示,N的大小可以改变的,而且这个程序的速度还可以, 比以前我用递归写的那个快多了.如果N改得太大输出会有问题, 因为我用到gotoxy的,这个程序主要是练一个算法-simple demonstration, N size can be changed, but the rate of this procedure can also, than in the past I used to write a recursive that quicker. If N is too big change in exports, gotoxy because I used, the process is mainly a training algorithm
Date
: 2008-10-13
Size
: 1.82kb
User
:
黄波
[
Other
]
tong_xun_lu
DL : 0
/*** 以下是函数原型*******/ int enter(ADDRESS t[]) /*输入记录*/ void list(ADDRESS t[],int n) /*显示记录*/ void search(ADDRESS t[],int n) /*按姓名查找显示记录*/ int delete1(ADDRESS t[],int n) /*删除记录*/ int add(ADDRESS t[],int n) /*插入记录*/ void save(ADDRESS t[],int n) /*记录保存为文件*/ int load(ADDRESS t[]) /*从文件中读记录*/ void display(ADDRESS t[]) /*按序号查找显示记录*/ void sort(ADDRESS t[],int n) /*按姓名排序*/ void qseek(ADDRESS t[],int n) /*快速查找记录*/ void copy() /*文件复制*/ void print(ADDRESS temp) /*显示单条记录*/ int find(ADDRESS t[],int n,char *s) /*查找函数*/ int menuSelect() /*主菜单函数*/ void clrscr(void) void gotoxy(int,int)
Date
: 2008-10-13
Size
: 4.04kb
User
:
石鹏
[
Console
]
PerpetualCalendar
DL : 0
使用vc2005开发。 这是一个控制台下的万年历。 clreol clreoscr clrscr gotoxy这几个函数是自己写的,因为是从Turbo C移植过来的。
Date
: 2008-10-13
Size
: 66.16kb
User
:
zhouzhonghao
[
CSharp
]
迷宫求解的非递归算法
DL : 0
#include #include #include #define N 20 int aa[N][N]; int yes=0; int x[100][2],n=0; void fun1(int (*aa)[N],int (*a)[N]); int fun(int (*a)[N],int i,int j); void begain(int (*t)[N]); void pr(int (*t)[N],int nn); void win(int (*t)[N]); void lose(); void main(void) { int t[N][N]; begain(t); pr(t,0); fun(t,1,1); if(yes) win(t); else lose(); getch(); } void fun1(int (*aa)[N],int (*a)[N]) { int i,j; for(i=0;i<N;i++) for(j=0;j<N;j++) aa[i][j]=a[i][j]; } int fun(int (*a)[N],int i,int j) { if(i==N-2&&j==N-2) { yes=1; return; } a[i][j]=1; fun1(aa,a); if(aa[i+1][j+1]==0&&!yes) { fun(aa,i+1,j+1); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i+1][j]==0&&!yes) { fun(aa,i+1,j); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i][j+1]==0&&!yes) { fun(aa,i,j+1); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i-1][j]==0&&!yes) { fun(aa,i-1,j); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i-1][j+1]==0&&!yes) { fun(aa,i-1,j+1); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i+1][j-1]==0&&!yes) { fun(aa,i+1,j-1); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i][j-1]==0&&!yes) { fun(aa,i,j-1); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } fun1(aa,a); if(aa[i-1][j-1]==0&&!yes) { fun(aa,i-1,j-1); if(yes) {x[n][0]=i,x[n++][1]=j;return;} } } void begain(int (*t)[N]) { int i,j; system(cls); randomize(); for(i=0;i<N;i++) { for(j=0;j<N;j++) { if(i==0||i==N-1||j==0||j==N-1) t[i][j]=1; else if(i==1&&j==1||i==N-2&&j==N-2) t[i][j]=0; else t[i][j]=random(2); } } } void pr(int (*t)[N],int nn) { int i,j,ii; textcolor(RED); gotoxy(1,1); for(i=0;i<N;i++) { for(j=0;j<N;j++) { if(nn!=1) printf(%2d,t[i][j]); else { for(ii=0;ii<n;ii++) { if(x[ii][0]==i&&x[ii][1]==j) { cprintf(%2d,t[i][j]); break; } } if(ii<n) continue; if(i==N-2&&j==N-2) cprintf( 0); else printf(%2d,t[i][j]); } } printf(\n); } } void win(int (*t)[N]) { int i,j,ii,jj; for(i=0;i<n-1;i++) for(j=i+1;j<n;j++) if(x[j][0]==x[i][0]&&x[j][1]==x[i][1]) { for(jj=j,ii=i;jj=0;i--) printf(%3d%3d->,x[i][0],x[i][1]); printf(%3d%3d\n,N-2,N-2); t[1][1]=0; pr(t,1); } void lose() { printf(\nNot find way!\n); }
Date
: 2011-12-19
Size
: 854byte
User
:
461600486@qq.com
[
ComboBox
]
wnl-c
DL : 0
可以在VC下运行的万年历,解决了在VC下不能解决的gotoxy函数问题-VC can run the hefty almanac, solves the VC will not solve the problem gotoxy function
Date
: 2025-07-06
Size
: 977kb
User
:
醒目
[
Data structs
]
zhaomigong_c
DL : 0
简单的演示,N的大小可以改变的,而且这个程序的速度还可以, 比以前我用递归写的那个快多了.如果N改得太大输出会有问题, 因为我用到gotoxy的,这个程序主要是练一个算法-simple demonstration, N size can be changed, but the rate of this procedure can also, than in the past I used to write a recursive that quicker. If N is too big change in exports, gotoxy because I used, the process is mainly a training algorithm
Date
: 2025-07-06
Size
: 2kb
User
:
黄波
[
Other
]
tong_xun_lu
DL : 0
/*** 以下是函数原型*******/ int enter(ADDRESS t[]) /*输入记录*/ void list(ADDRESS t[],int n) /*显示记录*/ void search(ADDRESS t[],int n) /*按姓名查找显示记录*/ int delete1(ADDRESS t[],int n) /*删除记录*/ int add(ADDRESS t[],int n) /*插入记录*/ void save(ADDRESS t[],int n) /*记录保存为文件*/ int load(ADDRESS t[]) /*从文件中读记录*/ void display(ADDRESS t[]) /*按序号查找显示记录*/ void sort(ADDRESS t[],int n) /*按姓名排序*/ void qseek(ADDRESS t[],int n) /*快速查找记录*/ void copy() /*文件复制*/ void print(ADDRESS temp) /*显示单条记录*/ int find(ADDRESS t[],int n,char *s) /*查找函数*/ int menuSelect() /*主菜单函数*/ void clrscr(void) void gotoxy(int,int) -/*** The following is a function prototype*******/ int enter (ADDRESS t [])/* input record*/void list (ADDRESS t [], int n)/* show the record*/void search ( ADDRESS t [], int n)/* Find a show record by name*/int delete1 (ADDRESS t [], int n)/* delete record*/int add (ADDRESS t [], int n)/* insert records*/void save (ADDRESS t [], int n)/* record-keeping for the document*/int load (ADDRESS t [])/* read record from file*/void display (ADDRESS t [])/*, by serial number Find show record*/void sort (ADDRESS t [], int n)/* Sort by name*/void qseek (ADDRESS t [], int n)/* Quick Search records*/void copy ()/* copy*/void print (ADDRESS temp)/* display a single record*/int find (ADDRESS t [], int n, char* s)/* Find function*/int menuSelect ()/* main menu function*/void clrscr (void ) void gotoxy (int, int)
Date
: 2025-07-06
Size
: 4kb
User
:
石鹏
[
Console
]
PerpetualCalendar
DL : 0
使用vc2005开发。 这是一个控制台下的万年历。 clreol clreoscr clrscr gotoxy这几个函数是自己写的,因为是从Turbo C移植过来的。-Vc2005 use development. This is a console under the calendar. clreol clreoscr clrscr gotoxy these functions are written in their own, because it is from Turbo C transplant.
Date
: 2025-07-06
Size
: 66kb
User
:
zhouzhonghao
[
Other
]
pro
DL : 0
C语言开发的通讯录,有增加,删除,添加,修改,排序,保存文件等功能、-rintf("# O: order them. #") gotoxy(2,11) cprintf("# #") gotoxy(2,12) cprintf("# M: modify a record. #") gotoxy(2,13) cprintf("# #") gotoxy(2,14) cprintf("# P: print all. #") gotoxy(2,15) cprintf("# #") gotoxy(2,16) cprintf("# F: find certaen records. #") gotoxy(2,17) cprintf("# #") gotoxy(2,18) cprintf("# S: save. #") gotoxy(2,19) cprintf("# #") gotoxy(2,20) cprintf("# Esc: exit.
Date
: 2025-07-06
Size
: 4kb
User
:
zhanglei
[
Console
]
conio
DL : 0
Console I/O for Win32 as it was back in good old DOS times. Contains functions as clrscr, gotoxy etc.
Date
: 2025-07-06
Size
: 4kb
User
:
gryph
[
Windows Develop
]
gotoxy
DL : 0
在VC下不能使用的gotoxy函数,所以自己编了一个很简单的gotoxy函数,献丑了-In the VC can not be used under the gotoxy function, so made themselves a very simple gotoxy function, show oneself up it! ! !
Date
: 2025-07-06
Size
: 68kb
User
:
wangfuyuan
[
ELanguage
]
gotoxy
DL : 0
this code implements a link list using c/c-this code implements a link list using c/c++
Date
: 2025-07-06
Size
: 2kb
User
:
marvin
[
Energy industry
]
GotoXY
DL : 0
GotoXY in C++ Input X and Y
Date
: 2025-07-06
Size
: 1kb
User
:
fayyazi
[
Other Games
]
snake
DL : 0
A classic Snake game developed in windows with some kernel functions like gotoxy.
Date
: 2025-07-06
Size
: 4kb
User
:
laslog
[
Crack Hack
]
unimodem.dll-adapted-for-windows-ce-3.0-systems.r
DL : 0
BSTR2, Bubble Sort2, Character to integer, CString s into char s. I am posting , Letter count with linked list, MasterString - over 3,000 lines of hardcore string manipluation (classes, structs, functions ) etc, string functions using both user defined & stdlib, Writing to a file, A Simple Count String.cpp, ACCI 2 Decimal,Hex,octal.cpp, ACCURATE and MODERN conversion .cpp, Ascii to Unicode and vice-versa.cpp, Converts a numeric string to integer .cpp, Finds and replaces a string with a given string.cpp, GotoXY.cpp, how variables can exist in different scopes.cpp, input and revers string.cpp, revers string 2.cpp, Searches if a textfile contains a string .cpp, simplest logic and most simplest password program .cpp, strcat,strcmp,strcpy(VB).cpp, string compare.cpp, string manip tutorial.cpp, StriStr--This function is an ANSI version of strstr() with case insensitivity.cpp, strrtrim.cpp, UPPER.C, VB string function.cpp
Date
: 2025-07-06
Size
: 21kb
User
:
Ahmad
[
Other
]
4
DL : 0
题目:学习gotoxy()与clrscr()函数 相当重要-Topic: study gotoxy () and CLRSCR () function Quite important
Date
: 2025-07-06
Size
: 2kb
User
:
崔嬴
[
Other Games
]
snake
DL : 0
首先 创建方向结构体、食物结构体、蛇身链表结构体、蛇的属性结构体 用到windows.h头文件里的gotoxy()函数,作用是将光标定位到指定坐标。-First create the direction of the structure, the structure of food, snake chain structure, the properties of the snake windows.h header file structure used in the gotoxy () function, the role is to position the cursor to the specified coordinates.
Date
: 2025-07-06
Size
: 25kb
User
:
邵广斌
[
assembly language
]
Calculus-CPP
DL : 0
Calculus program using C++ language. The program will solve the distance between two points, points of the line joining two points and area of the triangle. The c++ program also have its graphical design using gotoxy.h
Date
: 2025-07-06
Size
: 154kb
User
:
RJ
[
Other
]
gotoxy
DL : 0
gotoxy
Date
: 2025-07-06
Size
: 5kb
User
:
qlsy
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.