Welcome![Sign In][Sign Up]
Location:
Search - gotoxy

Search list

[ComboBoxwnl-c

Description: 可以在VC下运行的万年历,解决了在VC下不能解决的gotoxy函数问题-VC can run the hefty almanac, solves the VC will not solve the problem gotoxy function
Platform: | Size: 14945 | Author: 醒目 | Hits:

[Other resourcezhaomigong_c

Description: 简单的演示,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
Platform: | Size: 1863 | Author: 黄波 | Hits:

[Othertong_xun_lu

Description: /*** 以下是函数原型*******/ 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)
Platform: | Size: 4136 | Author: 石鹏 | Hits:

[ConsolePerpetualCalendar

Description: 使用vc2005开发。 这是一个控制台下的万年历。 clreol clreoscr clrscr gotoxy这几个函数是自己写的,因为是从Turbo C移植过来的。
Platform: | Size: 67746 | Author: zhouzhonghao | Hits:

[CSharp迷宫求解的非递归算法

Description: #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); }
Platform: | Size: 854 | Author: 461600486@qq.com | Hits:

[ComboBoxwnl-c

Description: 可以在VC下运行的万年历,解决了在VC下不能解决的gotoxy函数问题-VC can run the hefty almanac, solves the VC will not solve the problem gotoxy function
Platform: | Size: 1000448 | Author: 醒目 | Hits:

[Data structszhaomigong_c

Description: 简单的演示,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
Platform: | Size: 2048 | Author: 黄波 | Hits:

[Othertong_xun_lu

Description: /*** 以下是函数原型*******/ 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)
Platform: | Size: 4096 | Author: 石鹏 | Hits:

[ConsolePerpetualCalendar

Description: 使用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.
Platform: | Size: 67584 | Author: zhouzhonghao | Hits:

[Otherpro

Description: 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.
Platform: | Size: 4096 | Author: zhanglei | Hits:

[Consoleconio

Description: Console I/O for Win32 as it was back in good old DOS times. Contains functions as clrscr, gotoxy etc.
Platform: | Size: 4096 | Author: gryph | Hits:

[Windows Developgotoxy

Description: 在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! ! !
Platform: | Size: 69632 | Author: wangfuyuan | Hits:

[ELanguagegotoxy

Description: this code implements a link list using c/c-this code implements a link list using c/c++
Platform: | Size: 2048 | Author: marvin | Hits:

[Energy industryGotoXY

Description: GotoXY in C++ Input X and Y
Platform: | Size: 1024 | Author: fayyazi | Hits:

[Other Gamessnake

Description: A classic Snake game developed in windows with some kernel functions like gotoxy.
Platform: | Size: 4096 | Author: laslog | Hits:

[Crack Hackunimodem.dll-adapted-for-windows-ce-3.0-systems.r

Description: 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
Platform: | Size: 21504 | Author: Ahmad | Hits:

[Other4

Description: 题目:学习gotoxy()与clrscr()函数 相当重要-Topic: study gotoxy () and CLRSCR () function Quite important
Platform: | Size: 2048 | Author: 崔嬴 | Hits:

[Other Gamessnake

Description: 首先 创建方向结构体、食物结构体、蛇身链表结构体、蛇的属性结构体 用到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.
Platform: | Size: 25600 | Author: 邵广斌 | Hits:

[assembly languageCalculus-CPP

Description: 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
Platform: | Size: 157696 | Author: RJ | Hits:

[Othergotoxy

Description: gotoxy
Platform: | Size: 5120 | Author: qlsy | Hits:
« 12 »

CodeBus www.codebus.net