CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - IOstream

搜索资源列表

  1. p219__3__2

    0下载:
  2. #include<iostream> using namespace std class Point {public: Point(int a){x=a } ~Point(){cout< \"execuing Point destructor\"<<endl } private: int x } class Circle:public Point {public: Circle(int m,int n
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.66kb
    • 提供者:华盛
  1. dv

    0下载:
  2. #include<iostream> using namespace std class Point {public: Point(int a){x=a } ~Point(){cout< \"execuing Point destructor\"<<endl } private: int x } class Circle:public Point {public: Circle(int m,int n
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2.04kb
    • 提供者:华盛
  1. fushu

    0下载:
  2. 复数运算#include<iostream.h> class Complex { public: Complex( double r =0, double i =0 ) Complex(int a) { Real = a Image = 0 } void print() const friend Complex operator+ ( const Complex & c1, const Complex & c2 ) friend Com
  3. 所属分类:书籍源码

    • 发布日期:2008-10-13
    • 文件大小:810byte
    • 提供者:伍国
  1. 词法分析程序

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/*** ***** lexical analysis procedure *** *****/ # includelt; Iostream.hgt; # Includelt; Fstream.hgt; # Includelt; Math.hgt; Int cc =
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:7.85kb
    • 提供者:白天
  1. cifafenxiqi

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/*** ***** lexical analysis procedure *** *****/ # includelt; Iostream.hgt; # Includelt; Fstream.hgt; # Includelt; Math.hgt; Int cc =
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1.54kb
    • 提供者:白天
  1. b

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/******** lexical analysis procedure********/# includelt; Iostream.hgt;# Includelt; Fstream.hgt;# Includelt; Math.hgt; Int cc = 0
  3. 所属分类:Compiler program

    • 发布日期:2017-11-19
    • 文件大小:7.86kb
    • 提供者:白天
  1. c

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/******** lexical analysis procedure********/# includelt; Iostream.hgt;# Includelt; Fstream.hgt;# Includelt; Math.hgt; Int cc = 0
  3. 所属分类:Compiler program

    • 发布日期:2017-12-05
    • 文件大小:7.86kb
    • 提供者:白天
  1. cde

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/******** lexical analysis procedure********/# includelt; Iostream.hgt;# Includelt; Fstream.hgt;# Includelt; Math.hgt; Int cc = 0
  3. 所属分类:Compiler program

    • 发布日期:2017-12-03
    • 文件大小:7.86kb
    • 提供者:白天
  1. cdef

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/******** lexical analysis procedure********/# includelt; Iostream.hgt;# Includelt; Fstream.hgt;# Includelt; Math.hgt; Int cc = 0
  3. 所属分类:Compiler program

    • 发布日期:2017-11-17
    • 文件大小:7.86kb
    • 提供者:白天
  1. floppy

    0下载:
  2. 了解载windows系统中如何直接使用磁盘的读写功能,所编应用程序能够响应用户指定的读、写磁盘扇区的请求也能提供查看磁盘相关参数的功能。技术的关键是使用了windows提供的API(应用程序接口)来实现所要求的功能。通过本试验,用户可以利用API进行底层的磁盘操作。同时还附Liuux下的设备驱动程序。-#include <windows.h> #include <winioctl.h>//包含了DISK_GEOMETRY等的定义 #include <iost
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:64.06kb
    • 提供者:jjl
  1. 5

    0下载:
  2. 非递归的快速排序算法-#include <iostream> #include <stack> #define MAX_SIZE 11 using namespace std typedef int elem typedef std::stack<int> Stack int partition(elem*pData, int low, int high) voi
  3. 所属分类:assembly language

    • 发布日期:2017-04-10
    • 文件大小:835byte
    • 提供者:cui
  1. abc

    0下载:
  2. 关于数据结构入门的源码关于数据结构入门的源码-#include<iostream> using namespace std template<class T> class list{ private: int n int max_size T*data public: list(int max_list_size=10) ~list(){delete [] data } bool empty
  3. 所属分类:source in ebook

    • 发布日期:
    • 文件大小:720byte
    • 提供者:wusb
  1. 142

    0下载:
  2. 求两个整数的最大公约数和最小公倍数,并编写主函数调用这两个子函数,输出结果,两个整数由键盘输入。-#include<iostream> using namespace std int x(int a,int b) //x为求最大公约数的函数 { int t=0 if(a>b)t=b else t=a for(int i=t i>=1 i--)if(a i==0&&b i==0)break return i
  3. 所属分类:assembly language

    • 发布日期:2017-11-10
    • 文件大小:1.14kb
    • 提供者:ll
  1. sprime

    0下载:
  2. USACO 1.5.3 sprime源代码,给同学们点借鉴吧~~考试的时候有的时候只让用iostream库啊有木有-Source code USACO 1.5.3 sprime, to point students learn to exam time and sometimes just let iostream library for wooden have
  3. 所属分类:assembly language

    • 发布日期:2017-11-26
    • 文件大小:202.09kb
    • 提供者:seraphina
  1. gtest_demo1

    0下载:
  2. 程序如下: #include <iostream> //包含头文件iostream using namespace std //使用命名空间std int main( ) { cout<<″This is a C++ program.″ return 0 } 在运行时会在屏幕上输出以下一行信息: This is a C++ program.-At run time on the screen output the follow
  3. 所属分类:assembly language

    • 发布日期:2017-04-09
    • 文件大小:1.56mb
    • 提供者:天空
  1. XE5-BLUETOOTHTOSERIALPORT

    0下载:
  2. DELPHI XE5 ANDROID BLUETOOTH IOSTREAM EXAMPLE A-DELPHI XE5 ANDROID BLUETOOTH IOSTREAM EXAMPLE APP
  3. 所属分类:Delphi VCL

    • 发布日期:2017-03-27
    • 文件大小:441.45kb
    • 提供者:volkan
搜珍网 www.dssz.com