CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - main.h

搜索资源列表

  1. 用c编写的N*N的螺旋矩阵源代码

    0下载:
  2. /* 实现效果: 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() {     int i, j, num=1, a[N][N];     for(i=0; i<=N/2; i++) &nb
  3. 所属分类:其他小程序

    • 发布日期:2008-05-05
    • 文件大小:4395
    • 提供者:good@588
  1. C++程序设计语言实验三

    0下载:
  2. 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(
  3. 所属分类:其他小程序

  1. Simulation_IIC.rar

    1下载:
  2. STM32 模拟I2C 驱动 工程师可以作为参考运用到实际项目开发中,Simulation_IIC\include\fonts.h Simulation_IIC\include\lcd.h Simulation_IIC\include\main.h Simulation_IIC\include\stm32f10x_conf.h Simulation_IIC\include\stm32f10x_it.h Simulation_IIC\project\cortexm2_macro.s
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:37433
    • 提供者:李建刚
  1. tree

    0下载:
  2. 多元树的层次遍历、先根遍历、后根遍历 问题的描述: 函数填空:层次遍历多元树(在文件tree.cpp中3个空)、先根遍历、后根遍历的递归函数(在文件tree.h中2个空); 多元树的输入:在主程序中调用多元树的函数(定位根、找大儿子、找下一个兄弟等),输入某棵多元树。 -Multi-level tree traversal, the first traversal the root, root traversal issues Descr iption: function to
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:3451
    • 提供者:YY
  1. Md5Code

    0下载:
  2. C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。 -C prepared, the realization of string summary document containing a summary of two functions. Which mainly includes three documents:
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:83116
    • 提供者:look
  1. quickcg_2004

    0下载:
  2. QuickCG can be downloaded here, it s required to compile the code in the articles. quickcg.cpp quickcg.h main.cpp DevC++ users can download a project file for QuickCG here: quickcg.dev (optional DevC++ project file) The following file
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:28677
    • 提供者:jeff
  1. j_13011_syl

    0下载:
  2. 简介:C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。 -Profile: C prepared, the realization of string summary document containing a summary of two functions. Which mainly includes th
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:1010923
    • 提供者:hhq2
  1. Md5Code

    0下载:
  2. C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。 -C to prepare and achieve string summary document containing a summary of two functions. Which mainly contains three documents: Md5
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:7455
    • 提供者:xxxfree
  1. databort

    0下载:
  2. 数据异常处理。The main source file is "dabort.s": with suitable -PreDefines or a corresponding "options-setting" file, it assembles to the data abort veneer. This is described in detail in the documentation. The "dabort.h" file contains definition
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:29655
    • 提供者:qwe
  1. 001

    0下载:
  2. 一个人工智能的课设,是遗传算法求最值,主要代码在kernel.h中!-Set up a course in artificial intelligence, genetic algorithms are seeking the most value in the main code at kernel.h!
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-22
    • 文件大小:7164953
    • 提供者:lele
  1. 2

    0下载:
  2. 单链表的插入和删除实验目的: 1、定义单链表的结点类型 2、通过单链表的定义掌握线性表的链式存储结构的特点; 3、熟悉单链表的建立以及插入、删除等基本操作。 -# include <stdio.h> # include<malloc.h> # define ND sizeof(struct List) struct List {int data struct List*next } void main() {
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:895
    • 提供者:
  1. juanji

    0下载:
  2. 离散卷积计算 实验步骤: 主界面下进入实验五的“离散卷积计算”子实验, 输入有限长序列 x(n) 输入有限长序列 h(n) 鼠标单击确定按钮,以数值和图形两种方式显示卷积结果 -Discrete convolution calculation of the experimental steps: the main interface into the experiment five " convolution calculation of discrete&quo
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:6468
    • 提供者:高荣
  1. Md5Code

    0下载:
  2. C编写,实现字符串摘要、文件摘要两个功能。 里面主要包含3个文件: Md5.cpp、Md5.h、Main.cpp。其中Md5.cpp是算法的代码,里的代码大多是从 rfc-1321 里copy过来的;Main.cpp是主程序。-C to prepare, to achieve string summary document containing a summary of the two functions. 3 inside the main document contains: Md5.c
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:83116
    • 提供者:钱前
  1. dos

    0下载:
  2. 在cvm中实现dos的滚屏打印方式,并在cvm.h 的基础上增加了诸多实用的函数,包括一些图形界面的函数,所带的五笔输入法可以打词,比系统自带的只能打单个字的要方便很多。 只有dos.h文件是用户用的头文件; 用法如下: #include "dos.h" void dos() /*相当于main*/ { } 用户不能用main,因为main已经在dos.obj里了; dos.obj 的生成:dos.c 和其他的.h文件用于生成dos.obj ,只要 cvm.
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:13429
    • 提供者:luoweijian
  1. HMM

    0下载:
  2. 通用HMM,文件:Hmm.h and Hmm.cpp是Hmm class cmain.cpp是用c语言写的测试函数 main.cpp是用c++语言(stl)写的测试函数 HmmData.txt是一个hmm的存储文件,可由程序读出-Universal HMM, file: Hmm.h and Hmm.cpp yes Hmm class cmain.cpp is written in c language test function main.cpp is c++ language
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:57865
    • 提供者:yoen
  1. Client

    0下载:
  2. QQ2008 主界面精仿,基于MFC框架,C/C-QQ2008 main interface fine imitation, based on MFC framework, C/C++
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-20
    • 文件大小:5801279
    • 提供者:张无忌
  1. k01168221

    0下载:
  2. 使用方法:直接将main.hex文件下载到单片机中就可以使用。你可以打开工程文件查看,motor.c已经是一个结构化的驱动程序,可以方便的调用。 更改连接:请打开motor.h更改以下内容即可。-Usage: main.hex file directly downloaded to the MCU can be used. You can open the project file view, motor.c is already a structured driver, you ca
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:40494
    • 提供者:lix
  1. lisanjuanjijisuan

    0下载:
  2. 离散卷积计算 实验步骤: 主界面下进入实验五的“离散卷积计算”子实验, 1) 输入有限长序列 x(n) 2) 输入有限长序列 h(n) 3) 鼠标单击确定按钮,以数值和图形两种方式显示卷积结果 4) 实验程序: -Discrete convolution calculation Experimental steps: Five main interface into the experiment a "discrete convolution
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:6466
    • 提供者:gr
  1. lsjjjs

    0下载:
  2. 离散卷积计算 实验步骤: 主界面下进入实验五的“离散卷积计算”子实验, 1) 输入有限长序列 x(n) 2) 输入有限长序列 h(n) 3) 鼠标单击确定按钮,以数值和图形两种方式显示卷积结果 4) 实验程序: -Discrete convolution calculation Experimental steps: Five main interface into the experiment a "discrete convolution
  3. 所属分类:Other systems

    • 发布日期:2017-03-24
    • 文件大小:6441
    • 提供者:gr
  1. WallClockCtrl_Demo

    0下载:
  2. This the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CAnalogClockDemoApp application class.- This is the main header file for the application. It includes other
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-26
    • 文件大小:23688
    • 提供者:Prashant
« 12 3 »
搜珍网 www.dssz.com