CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - stdio.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. debugmalloc

    0下载:
  2. #include <stdlib.h> #include <string.h> #include <stdio.h> //#include <iostream> #include "debugmalloc.h" #include "dmhelper.h" /*Define the macro */ #define ALIGN 8 #define FENCE 0xDEADBEEF #define HE
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-21
    • 文件大小:2924
    • 提供者:liucj
  1. shunxu

    0下载:
  2. //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:1211
    • 提供者:珈旖
  1. chaoshiguanli

    0下载:
  2. #include<stdlib.h> #include "dos.h" #include "graphics.h" #include "math.h" #define PI 3.1415926 #define NULL 0 #include<stdio.h> #include<string.h> -# Include <stdlib.h># Include dos.h# Include graphics.h# I
  3. 所属分类:Other systems

    • 发布日期:2017-03-22
    • 文件大小:22839
    • 提供者:柴利博
  1. 4

    0下载:
  2. 四则运算 将算术表达式转换成后缀表达式后计算-#include<stdio.h> #include <stdlib.h>
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1144
    • 提供者:
  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. rls

    0下载:
  2. c语言编写的俄罗斯方块程序,c语言环境编写,供大家娱乐一下:)-/********************************/ /* Desc: 俄罗斯方块游戏 */ /* Date: 2008.03.12 22:30 */ /********************************/ #include <stdio.h> #include <bios.h> #include
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:4311
    • 提供者:孙艳
  1. polynomial-

    0下载:
  2. 一元多项式相加减 #include<stdio.h> #include<malloc.h> typedef struct polynode /*用单链表存储多项式的结点结构*/ { int coef int exp struct polynode *next }node-Unary polynomial-phase addition and subtraction# include <stdio.h># incl
  3. 所属分类:Other windows programs

    • 发布日期:2016-01-25
    • 文件大小:1188
    • 提供者:张朗
  1. lixminC

    1下载:
  2. 这是编译原理词法分析源程序和实验报告。本程序亮点在于: 1、能够处理ANSI C 定义的42种运算符,32个关键字。 2、能够识别并且抽取预处理语句(如#include, #define , #ifdef....)存到preprocess.log中(格式例子为:line 0 : #include<stdio.h>) 3、能够识别并剔除两种注释(//和/* */) 4、能够识别简单的词法错误 missing terminating " 并且告诉你是在第几行出的错。 5、能够识别浮点数,
  3. 所属分类:Other systems

    • 发布日期:2017-05-03
    • 文件大小:1258936
    • 提供者:lixmin
  1. stereo

    0下载:
  2. Kilgard, 1994. */ /* This program is freely distributable without licensing fees and is provided without guarantee or warrantee expressed or implied. This program is -not- in the public domain. */ #include <stdlib.h> #includ
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:540
    • 提供者:Rakesh
  1. Cbingdu

    0下载:
  2. 1.在C、D、E盘和c:\windows\system、c:\windows中生成本病毒体文件 2.在C、D、E盘中生成自动运行文件 3.注册c:\windows\system\svchost.exe,使其开机自动运行 4.在C:\windows\system下生成隐蔽DLL文件 5.病毒在执行后具有相联复制能力 1.在所有磁盘的根目录生成svchost.com和autorun.inf文件 2.生成病毒体: c:\windows\wjview32.com c:\w
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:7088
    • 提供者:2626648
  1. c-P-P-lexical-analysis

    0下载:
  2. c++词法分析很简单的代码#include<iostream.h> #include<fstream.h> #include<stdlib.h> #include<stdio.h> #include<string.h> #include<conio.h> #include<process.h> /*头文件*/ -c++ lexical analysis is very simple c
  3. 所属分类:其他小程序

    • 发布日期:2017-03-21
    • 文件大小:2853
    • 提供者:李亚茹
  1. CIni

    0下载:
  2. ini 文件解析器(类),将ini文件的读写等操作进行了封装,使用标准的输入输出等简单的库(string、stdio、stdlib),输入文件名 段名 条目名就可以解析出结果。通过ReadInt(),ReadString(),Write()3个主要函数实现。-an implementation of initialization file parser, only few stand libs needed(sting.h, stdio.h, stdlib.h), 3 main function
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:5244
    • 提供者:Gavin
  1. c

    0下载:
  2. 变温度为华氏摄氏度 然后让你知道温度为多少华氏摄氏度-#include <stdio.h> void main() { double f,c printf("请输入华氏温度:") scanf(" lf",&f) c=5.0/9.0*(f-32) printf("与华氏温度 .2lf对应的摄氏温度是: .2lf\n",f,c) }
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-06
    • 文件大小:1321
    • 提供者:李晓歌
  1. sysconvert

    0下载:
  2. 进制间的转换,顶顶顶,大学期间的作品,经供参考-#include<stdio.h> #include<math.h> int main(){ int b,c,i,j int d[10000] char a[37]={ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , A , B , C , D , E , F , G , H , I , J , K , L , M , N , O , P , Q
  3. 所属分类:Other systems

    • 发布日期:2017-12-06
    • 文件大小:224778
    • 提供者:应超
  1. file5

    0下载:
  2. C语言实验5,学生信息管理系统#include "stdio.h" #include "stdlib.h" #include "string.h" #include "malloc.h" -student infomation management system
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-08
    • 文件大小:12053
    • 提供者:月心月士
  1. exe

    0下载:
  2. 求三角形面积 判断三角形的种类以计算面积-#include<stdio.h> #include<math.h> main() { double a,b,c,p,S,i printf("Input a,b,c\n") scanf(" lf lf lf",&a,&b,&c) if(a+b>c&&a+c>b&&b+c>a){ p=(a+b+c)/2 S=sqrt((p-a)*(p-b)*(p-c)
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:2278
    • 提供者:洛洛
  1. 001

    0下载:
  2. #include <stdio.h> #include <float.h> #include <windows.h> #include<stdlib.h> #include<string.h> #include<conio.h>-# Include <stdio.h># Include <float.h># Include <windows.h># Include &l
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:4765
    • 提供者:zzj
  1. shiayn

    0下载:
  2. 量不要让站长把时间都料的详细功能、包含内花费在为您修正说明-#include <stdio.h> #include <math.h>
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:713
    • 提供者:asdfasdf
  1. Employee

    0下载:
  2. C++简单实现雇佣问题 #include<iostream.h> #include<stdio.h> #include<string.h>-C++ is simple to achieve employment issues #include<iostream.h> #include<stdio.h> #include<string.h>
  3. 所属分类:Other systems

    • 发布日期:2017-04-25
    • 文件大小:151423
    • 提供者:高靓
« 12 »
搜珍网 www.dssz.com