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

搜索资源列表

  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
    • 文件大小:4.29kb
    • 提供者:good@588
  1. 0.0

    0下载:
  2. 程序说明书 一. 各模块的功能: readtxt(),读读者文件writetxt(),写读者文件addreader(reader s) ,添加读者delreader(int number),删除读者searchreader(int number),查找读者readerdata() ,读者数据管理readbtxt(),读图书文件writebtxt(),写图书文件addbook(libook s),添加图书delbook(int number),删除图书searchbook(int number),
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:24.29kb
    • 提供者:闫斌
  1. sd2000全系列 51汇编程序

    0下载:
  2. 本程序用于测试实时时钟模块SD2000系列功能之一:四种中断功能 程序功能如下: 1.在SD2000试验板上显示实时时间的小时和分钟? 2./INT1 到指定时刻时输出低电平. 3./INT2输出固定频率32768HZ. 4.测试每分钟边沿中断输出(INT MODE3)和每分钟固定中断输出(INT MODE4)功能-procedures used to test the real-time clock module SD2000 series of functional one : four i
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4.22kb
    • 提供者:小顽童
  1. sf_200562516252

    0下载:
  2. 一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = ne
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2.64kb
    • 提供者:boxu
  1. cn-Winamp280-Dfx6113

    0下载:
  2. 本规范中所指定的数据类型如INT,FIXED,VARSTR,FLOAT,DATE,TIME等只是为数据检查设定的;前端系统通过调用时均以字符串方式上送,AG会根据该规范进行必要的类型和长度检查; 除非特别说明,本规范中的规定的字段长度都是最大长度(FIXED类型是定长)。-the norms as specified in the data types such as INT, fixed, VARSTR, FLOAT, DATE, TIME, etc. only to check data s
  3. 所属分类:DirextX编程

    • 发布日期:2008-10-13
    • 文件大小:4.94mb
    • 提供者:赵飞
  1. char2dec 字符类型转化为十进制int类型函数

    0下载:
  2. 字符类型转化为十进制int类型函数,可以直接调用char2dec函数,输出为整形数int-Into a decimal character type int type function, you can call char2dec function, the output of integer int
  3. 所属分类:其他小程序

    • 发布日期:2017-03-24
    • 文件大小:1018byte
    • 提供者:上校
  1. float_char_int_string.rar

    0下载:
  2. 各种基本数据类型转换源程序。 本程序涉及到的数据类型有:float, int , char, string.,A variety of basic data type conversion source. This procedure involves the data types are: float, int, char, string.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:105.73kb
    • 提供者:Steno
  1. wchar_t.rar

    0下载:
  2. vc中常用数据格式转换,如wchar_t,char*,CString,int等。,vc commonly used data format conversion, such as wchar_t, char*, CString, int, etc..
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:1.26kb
    • 提供者:zhang lz
  1. ew

    1下载:
  2. for: Root of a Polynomial --- --- --- --- -- Time Limit: 1 Second Memory Limit: 32768 KB -------------------------------------------------------------------------------- A polynomial of degree n has the common form as . Your ta
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:1kb
    • 提供者:Alex Zhang
  1. int79h

    0下载:
  2. 自定义的INT 79H的中断服务程序设计 该中断服务程序的功能为驻留内存(INT 31H),运行时,使用中断调用(2AH,2CH)读取系统时间,在屏幕上将时间以“年月日 时:分:秒”的形式显示出来, 系统其他功能正常。-Since the definition of the INT 79H interrupt service program design of the interrupt service routine for the presence of memory function
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:1.08kb
    • 提供者:微凉
  1. 2

    0下载:
  2. 编写筛选查找素数函数: void sieve(bool isPrime[], int n) 其中isPrime[ ]为一个布尔型数组,n为数组大小。由于2是第一个素数, 所以设置isPrime[0]和isPrime[1]的值为false,并设置其余的元素初值为true。 然后对从4到n-1的每一个i,判断i是否能够被2整除,如果i能够被2整除,则设置isPrime[i]为false。 对从2到n/2的每一个可能的数值重复以上处理,当操作结束时,所有值为true的isPrime
  3. 所属分类:Other systems

    • 发布日期:2017-05-04
    • 文件大小:1.12mb
    • 提供者:闻悦
  1. BAS-INT

    0下载:
  2. 一个最简单的整型BASIC的C语言源码 一个最简BASIC的C语言源码,不提供编辑,通过C编译后,直接在命令行执行 BASIC程序.如 BAS-INT MIN. BAS-One of the most simple integer BASIC C-language source one of the most simple C-language source code BASIC, does not provide editing, compiled by C directly in the
  3. 所属分类:CSharp

    • 发布日期:2017-03-23
    • 文件大小:5.01kb
    • 提供者:iddison
  1. int-to-string

    0下载:
  2. int to string;int t o string;int t o string;int t o string;int t o string;int t o string;int to string;-int to string;
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:1.84kb
    • 提供者:shede223
  1. INT

    0下载:
  2. INT介绍资料,介绍了经常使用的INT,并附简短示例,帮之大家很好理解INT-INT introduce information on the frequent use of the INT, along with brief examples to help the people a good understanding of INT
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:44.31kb
    • 提供者:stjlu
  1. int

    0下载:
  2. 输入一个数字int转换成字符char,程序短小,适合练习!-int to char
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:242.35kb
    • 提供者:zfgn
  1. Cstring-transition-char-string-int

    0下载:
  2. Cstring转char、string、int等数据类型的方法,这是我们VC编程经常用到的方法,希望对大家有用!-The transfected char, string, int data type in Cstring. Txt
  3. 所属分类:Other systems

    • 发布日期:2017-11-14
    • 文件大小:2.31kb
    • 提供者:黄德才
  1. INT

    0下载:
  2. INT介绍资料,介绍了经常使用的INT,并附简短示例,帮之大家很好理解INT-INT introduce information on the frequent use of the INT, along with brief examples to help the people a good understanding of INT
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:44.4kb
    • 提供者:thofde
  1. add-two-big-int-numbers

    0下载:
  2. 该程序的功能主要是实现两个大整数(150位以内)的加法。-It can compete one function to add two big int numbers.
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:986byte
    • 提供者:寻乐生
  1. Big-Int

    0下载:
  2. hi this is a usefull code for C++ developer, that in C++ , big int code -hi this is a usefull code for C++ developer, that in C++ , big int code
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1.38kb
    • 提供者:amin
  1. int-convert-string-by-C-Language

    0下载:
  2. C语言实现,自定义两个函数,实现int型和字符串String型互换:把字符串转化成double浮点型,把int型转化为String型,在网络通信中用得到,在VC环境下已经验证-by using C Language,define two functions and realize below function:we can convert int to string ,and also string to int ,these fucntion has been tested.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:799byte
    • 提供者:王茂春
« 12 3 4 5 6 7 8 9 10 ... 43 »
搜珍网 www.dssz.com