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

搜索资源列表

  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. 学习全局对象、静态对象、局部对象。 5. 运算符重载。 二、实验题目 1,定义一个学生类,要求存储学号,姓名, 年龄,性别,班号等信息,从键盘输入10个学生信息,存储在一个对象数组中,并将所有学生信息打印出来。 要求:1,学号按照1,2,3....排列,并通过对象构造函数输入。 2,学生类提供一个打印函数,负责打印学生信息
  3. 所属分类:其他小程序

  1. C++程序设计语言实验三

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

  1. C++程序设计语言实验四

    2下载:
  2. 实验七:C++编程入门 一、实验内容 1. 理解继承与组合。 2. 学会使用多态特性。 3. 使用文件。 4. 异常处理。 二、实验题目 1. 创建一个class Counted,包含一个int类型的成员变量id和一个static int类型的成员变量count。默认构造函数的开头为“Counted() : id(count ++) {”。要求: a) 构造函数输出id值并且输出“it’s being created”; b) 析构函数也输出id值并且输出“it is bein
  3. 所属分类:其他小程序

  1. MyVerify.zip

    1下载:
  2. PKI系统对x.509格式数字证书的验证的C++源码实现,可直接点击编译执行,PKI system x.509 digital certificates to verify the format of the C++ source code to achieve, click on the compiler implementation
  3. 所属分类:Other systems

    • 发布日期:2014-05-18
    • 文件大小:12541
    • 提供者:bonnie
  1. vc助手6.0破解版

    0下载:
  2. Visual Assist X是一款非常好的Microsoft Visual Studio 2005和Visual Studio .NET插件,支持C/C++,C#,ASP,Visual Basic,Java和HTML等语言,能自动识别各种关键字、系统函数、成员变量、自动给出输入提示、自动更正大小写错误、自动标示错误等,有助于提高开发过程的自动化和开发效率。-Visual Assist X is a very good Microsoft Visual Studio 2005 and Visua
  3. 所属分类:Other systems

    • 发布日期:2016-01-26
    • 文件大小:2281751
    • 提供者:夏天
  1. VC_Assistant.10.6.1842

    0下载:
  2. VC6.0 - vs2010 辅助Visual c++进行开发的使用插件,具有处理语法错误、自动单词补全等功能-VC6.0- vs2010 supporting Visual c++ to develop the use of plug-ins, with grammar mistakes, make congruent features automatic word
  3. 所属分类:Other systems

    • 发布日期:2017-06-01
    • 文件大小:13892105
    • 提供者:SYN
  1. module.asn1-2

    1下载:
  2. ASN.1编解码模块,经典代码,实现了ASN.1各种编码方式的BER,DER,PER,XER的编码解码,代码非常美妙,是C的经典-ASN.1 encoding and decoding modules, the classic code, and implements the various ASN.1 encoding of the BER, DER, PER, XER encoding decoding, the code is very wonderful, is the classic
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:116686
    • 提供者:黄杰凯
  1. Ex15_02

    0下载:
  2. VS2005 c# 利用DataGridView读取XML 这个例子很适合初学者-VS2005 c# Use DataGridView read this example XML is very suitable for beginners
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:15124
    • 提供者:刘良良
  1. Hanoi

    0下载:
  2. 一个Hanoi的小游戏 void Hanoi(int n, char x,char y,char z) { if (n==1) { printf("%c %d %c\n",x,n,z) return } Hanoi(n-1,x,z,y) printf("%c %d %c\n",x,n,z) Hanoi(n-1,y,x,z) }-Hanoi in a game void Hanoi (int n, char x, char
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:6717
    • 提供者:123
  1. MATLAB_PAF_AND_CODE

    0下载:
  2. 深入浅出MATLAB7.X混合编程的PDF电子书和全书的源代码,MATLAB高级编程和混合编程学习的好例子!-Mixed programming MATLAB7.X easy PDF e-book and the book' s source code, MATLAB programming high-level programming and mixed a good example of learning!
  3. 所属分类:Other systems

    • 发布日期:2017-06-01
    • 文件大小:14261381
    • 提供者:nick
  1. a.sh.x.c.tar

    0下载:
  2. 用C语言编写一套日期格式化的程序,可以按照中国人的习惯输出当前日期。-With the C language program of a date format, you can custom output according to the Chinese people the current date.
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:4110
    • 提供者:baoping
  1. xio

    0下载:
  2. xio.c 提供xprintf(fmt,...)的简单实现,包括对 d, c, x等的转换。需要提供xputc()的底层驱动。-xio.c provide xprintf (fmt ,...) simple implementation, including the right d, c, x, etc. conversion. The need to provide xputc () the underlying drivers.
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:1040
    • 提供者:taoynkkx
  1. _x

    0下载:
  2. C++ 中.x导入文件的一个 应该会很有用的 我也在寻找其他的-C++,. X import files in an
  3. 所属分类:Other systems

    • 发布日期:2017-05-12
    • 文件大小:2983445
    • 提供者:awkping
  1. C++_calculator

    0下载:
  2. this program is simple calculator that calculate [multiply, divide, plus, minus, facrorial, power, sin(x), cos(x), tan(x), sqrt(x), Ln(x), Exp(x)] of two number.
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:147381
    • 提供者:maisam
  1. clrmap.c

    0下载:
  2. Replaces a SunRasterfile colormap with a standard 3 X 256 grayscale colormap.
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:1338
    • 提供者:ahcorde
  1. C-language-and-a-classic-code

    0下载:
  2. 该资源有28个经典的C语言代码,包括两数交换、考试成绩转换成等级分、判读闰年、求平均、求最大值、求最小值、统计个数、最大公约数、求 n 的阶乘、打印九九乘法表、求 100 以内的素数、求水仙花数、用函数求 x 的 n 次幂-28 classic C language code of the resource, including the exchange of two numbers, test scores convert level interpretation of the leap ye
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-06
    • 文件大小:4885
    • 提供者:张达
  1. A题---视频体验评价实验数据

    0下载:
  2. c语言组织部提提弄兔兔提哦旅途互推哦摩西我一直图曲突徙薪www只GPS下午(C language organization department make a get Bunny mention oh oh Mose I have been pushing a map of WWW GPS afternoon to take precautions against a possible danger)
  3. 所属分类:其他

    • 发布日期:2017-12-28
    • 文件大小:8841216
    • 提供者:wanghuo
  1. x插入到递增顺序表的适当位置

    0下载:
  2. 一个X插入到递增顺序表的适当位置的C语言代码文件(A C language code inserted into the incremental order table in X)
  3. 所属分类:其他

    • 发布日期:2018-01-04
    • 文件大小:1024
    • 提供者:食肉兔
  1. y=x^2在[1,2]的定积分

    0下载:
  2. y=x^2在[1,2]的定积分可以的可以的可以的(The definite integral of y=x^2 in [1,2])
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:1013760
    • 提供者:疾风之翼
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com