虫虫首页|资源下载|资源专辑|精品软件
登录|注册

conio

  • DSP中输入信号的生成过程。 conio.cpp实现X(n)信号

    DSP中输入信号的生成过程。 conio.cpp实现X(n)信号,其中有两个频率分量的正弦信号(正弦计算由sinwn.cpp实现),频率可变,这里取140Hz和70Hz。 考虑了高斯白噪声,由gauss.cpp实现。 最后该信号共产生2000个点,最后的信号点存储于 “x.txt”文本中。

    标签: conio DSP cpp 输入信号

    上传时间: 2014-09-03

    上传用户:tianyi223

  • 五子棋小游戏#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 lt gt stdlib

    上传时间: 2016-05-18

    上传用户:anng

  • #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 lt gt malloc

    上传时间: 2014-01-01

    上传用户:caiiicc

  • #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_r_leaf=0,root=0 /*各种结点数*/ char le[m],l[m],r[m],ro[m] /*用与存放各种结点*/ typedef struct BiTNode/*定义二叉树*/

    标签: include lt gt graphics

    上传时间: 2013-12-15

    上传用户:liansi

  • 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

    标签: programming particulary start-out tutorial

    上传时间: 2017-08-13

    上传用户:wangyi39

  • * 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> #ifndef MAKEWORD #define MAKEWORD(l,h) ((WORD)(((BYTE)(l))|(((WORD)(BYTE)(h))<<8))) #endif #define WSA_MAJOR_VERSION 1 #define WSA_MINOR_VERSION 1 #define WSA_VERSION MAKEWORD(WSA_MAJOR_VERSION, WSA_MINOR_VERSION)

    标签: compatible borland compile visiual

    上传时间: 2014-01-15

    上传用户:yuchunhai1990

  • C语言用户注册及登录

    #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<string.h> main(void) {   char new_name[4], name[4];     int new_sn ,sn;     printf("        【注册】\n\n");     printf("请输入用户名(四位英文字母):");     scanf("%s", &new_name);     printf("请输入密码(六位数字):") ;     scanf("%d" ,&new_sn);    /*system("PAUSE");*/     system("CLS");/*清屏*/        /*system("PAUSE");*/        printf("  【登陆】\n\n");        printf("输入用户名:");        scanf("%s" , &name);        if(!strcmp(new_name,name)){printf("输入用户名错误!"); }/*判断用户是否正确*/     printf("输入密码:");     scanf("%d" , &sn);     if(new_sn != sn){printf("输入密码错误!"); }/*判断密码是否正确*/     system("CLS");     printf("恭喜你,登陆成功!\n");        getchar();     return 0;     }

    标签: C语言

    上传时间: 2015-12-30

    上传用户:gjatd1987