搜索资源列表
用c编写的N*N的螺旋矩阵源代码
/*
实现效果:
1 2 6 7 15
3 5 8 14 16
4 9 13 17 22
10 12 18 21 23
11 19 20 24 25
*/
#include <stdio.h>
#define N 5 //阶数,即N*N的螺旋矩阵void main()
dgxjyffxq
- 递归下降语法分析器,如果有错误,请把getch()改成getchar() 把putch()改成putchar()VC6.0下编译执行OK-recursive syntax analyzer decline, if there was any mistake. Please getch () changed getchar () putch () changed putchar () V under +6.0 compiler imple
OpenGLSolarSys
- Open GL Line int main() { int gdriver=DETECT, gmode initgraph(&gdriver, &gmode, \"c:\\\\tc\") lineBres(30,20,100,150) getch() closegraph() }
词法分析程序(编译原理)
- 用C语言写的词法分析程序 #include "stdio.h" #include"string.h" #include "stdlib.h" FILE *fp; char filename[20]; char token[100]; int m=0; char getch() { char ch; ch=fgetc(fp);
pl/0
- /*PL/0编译系统C版本头文件pl0.h*/ /* typedef enum { false, true } bool; */ #define norw 13 /*关键字个数*/ #define txmax 100 /*名字表容量*/ #define nmax 14 /*number的
迷宫求解的非递归算法
- #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(i
dgxjyffxq
- 递归下降语法分析器,如果有错误,请把getch()改成getchar() 把putch()改成putchar()VC6.0下编译执行OK-recursive syntax analyzer decline, if there was any mistake. Please getch () changed getchar () putch () changed putchar () V under+6.0 compiler implem
OpenGLSolarSys
- Open GL Line int main() { int gdriver=DETECT, gmode initgraph(&gdriver, &gmode, "c:\\tc") lineBres(30,20,100,150) getch() closegraph() } -Open GL Line int main () (int gdriver = DETECT, gmo
cifafenxi
- 词法分析程序:一. 为PL/0语言建立一个词法分程序GETSYM(函数) 把关键字、算符、界符称为语言固有的单词,标识符、常量称为用户自定义的单词。为此设置三个全程量:SYM,ID,NUM 。 SYM:存放每个单词的类别,为内部编码的表示形式。 ID:存放用户所定义的标识符的值,即标识符字符串的机内表示。 NUM:存放用户定义的数。 GETSYM要完成的任务: 1. 滤
cifafenxi
- token,字符数组,长度为32,存放识别出来的单词符号。 tmp,字符数组,长度为256,可以缓存用户输入的字符串。 char *fgets(char *string, int n, *stdin):*string输入数据的首地址, n 一次读入数据块的长度, stream文件指针. Void getbc() //检查ch中的字符是否为空白字符,如是则调用getch(),直到ch中读入一个非空白字符为止. fgets(
keyscan
- 功能:4×4键盘扫描程序 返回:键序号(0~F),0xFF表示没有字符输入 软件特点:简洁高效,无须延时消抖,避免连发 编程语言:Keil-C -Function: 4 × 4 keyboard scanner return: key serial number (0 ~ F), 0xFF that there is no character input software features: simple and eff
Linux_getch()
- LINUX 下无 getch() 函数,这是一个模拟实现getch() 函数的源代码.-Under LINUX without getch () function, which is a simulation of the realization of getch () function of the source code.
xiaobawangxuexiji
- c语言编写的小霸王学习机界面,一个小车的游戏,给出简单加减运算,用户输入结果,正确并给出评判小车前进一步。(本代码是在win—tc写的,在visual c++里边运行要将getch()去掉。)-c language learning machine interface written Sundance Kid, a car game, give a simple addition and subtraction, the results
hongwaiyaokongwendu
- DS18B20温度采集 ...Ir_work(void)....红外键值散转程序 ...Ircordpro(void)...红外码值处理函数 ...void Getch()...键盘扫描-DS18B20 temperature acquisition ... Ir_work (void ).... infrared key bulk transfer process ... Ircordpro ??(void) ... IR
ORDER2-EQUATION
- #include<stdio.h> #include<conio.h> #include<math.h> main(){ float delta,a,b,c float x,x1,x2,z printf("enter a:") scanf(" f",&a) printf("enter b:") scanf(" f",&b) printf("enter
time-example
- 1.程序分析: 2.程序源代码: #include "stdio.h" #include "conio.h" #include "time.h" void main() { time_t lt /*define a longint time varible*/ lt=time(NULL) /*system time and date*/ printf(ctime(<)) /*english
displaystring
- enter and display string by using getch() function and the enter of string has no restriction of size
FBPredict
- this football prediction for windows. it can getch from website data and match with the goals, results and predict next.... thx u.-this is football prediction for windows. it can getch from website data and match with th
getch_hanshu
- getch()函数的功能介绍,详细说明该函数的作用-getch () function Features, detailed descr iption of the role of the function
scanf-temp
- 键盘缓冲区残余信息问题 scanf(" c",&c) 这句不能正常接收字符,什么原因呢?我们用 printf("c= d\n",c) 将C用int表示出来,启用printf("c= d\n",c) 这一句,看看scanf()函数赋给C到底是 什么,结果是c=10 ,ASCII值为10是什么?换行即\n.对了,我们每击打一下"Enter"键,向键盘缓冲区发去一个“回车”(\r),一个“换行"(\n),在这里 \r被scanf()
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 沪ICP备09016508号
1999-2046 源码中国 All Rights Reserved.