搜索结果
找到约 7 项符合
conio 的查询结果
数学计算 DSP中输入信号的生成过程。 conio.cpp实现X(n)信号
DSP中输入信号的生成过程。 conio.cpp实现X(n)信号,其中有两个频率分量的正弦信号(正弦计算由sinwn.cpp实现),频率可变,这里取140Hz和70Hz。 考虑了高斯白噪声,由gauss.cpp实现。 最后该信号共产生2000个点,最后的信号点存储于 “x.txt”文本中。 ...
游戏 五子棋小游戏#include<stdlib.h> #include<time.h> #include<stdio.h> #include<conio.h
五子棋小游戏#include<stdlib.h>
#include<time.h>
#include<stdio.h>
#include<conio.h>
int chess[169]={0} /*棋盘*/
struct chess_t/*作为辅助,即是作为建意*/
{
char attack /*攻防用的,0表示守,1表示攻*/
int j /*作为优先级用*/
}chess_a[169] ...
其他 #include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#include <math.h>
#include <conio.h>
struct DuLNode{
struct DuLNode *prior
int data
struct DuLNode *next
数据结构 #include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h&
#include<malloc.h>
#include<limits.h>
#include<stdio.h>
#include<graphics.h>
#include<io.h>
#include<math.h>
#include<process.h>
#include<conio.h>
#define m 100
#define OK 1
typedef int Status
typedef char TElemType /*树元素的类型*/
int t=35
int n=20
int h=14
int u=2
int leaf=0,non_l_leaf=0,non ...
游戏 Very old simple tutorial I made to start-out in C game programming using DevC++ particulary in primi
Very old simple tutorial I made to start-out in C game programming using DevC++ particulary in primitive graphics.
This tutorial includes info in settting up DevC++ to work with the very basic (and old) Borland s graphics.h and conio.h
其他 * TFTP client compatible with RFC-1350 * compile under visiual c++ or borland c++ * author email:
* TFTP client compatible with RFC-1350
* compile under visiual c++ or borland c++
* author email: yuyushine@163.com
***************************************************/
#define _VC /* if compile under visiual c++ else undefine this*/
#include <stdio.h>
#include <winsock.h>
#include <conio.h>
...
C/C++语言编程 C语言用户注册及登录
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
main(void)
{ &nbsp; char new_name[4], name[4];
&nbsp; &nbsp; int new_sn ,sn;
&nbsp; &nbsp; printf(" &nbsp; &nbsp; &nbsp; &nbsp;【注册】\n\n");
&nbsp; &nbsp; printf("请输入用户名(四位英文字母):");
&nbsp; &nbsp; scanf("%s", ...