码迷,mamicode.com
首页 >  
搜索关键字:iostream    ( 13291个结果
桥接模式
桥接模式网上都讲得很复杂,我总结一下就是一句话: 如果多个维度变化,每个维度都有一个基类,嗯,就这样 #include?<iostream> using?namespace?std; class?Os?{ ??public: ????virtual?void?Set...
分类:其他好文   时间:2014-09-03 18:31:27    阅读次数:246
Mean and Standard Deviation-从文件中读取数据计算其平均数和标准差
MeanandStandardDeviation-从文件中读取数据计算其平均数和标准差//MeanandStandardDeviation-从文件中读取数据计算其平均数和标准差 #include<iostream> #include<fstream> #include<cstdlib> #include<cmath> intmain() { usingnamespacestd; ifstr..
分类:其他好文   时间:2014-09-03 02:45:06    阅读次数:209
calculate the number of characters-统计文件中的字符数,非空白字符数,字母数,输入到文件和屏幕:
calculatethenumberofcharacters-统计文件中的字符数,非空白字符数,字母数,输入到文件和屏幕://calculatethenumberofcharacters-统计文件中的字符数,非空白字符数,字母数,输入到文件和屏幕: #include<iostream> #include<fstream> #include<cstdlib>..
分类:其他好文   时间:2014-09-03 02:44:56    阅读次数:227
Max-Min-搜索int类型数字文件中的最大数和最小数写到屏幕
Max-Min-搜索int类型数字文件中的最大数和最小数写到屏幕://Max-Min-搜索int类型数字文件中的最大数和最小数写到屏幕 #include<iostream> #include<fstream> #include<cstdlib> intmain() { usingnamespacestd; ifstreamfin; ofstreamfout; intmax,mi..
分类:其他好文   时间:2014-09-02 12:38:55    阅读次数:207
Average-计算文件中double类型数字的平均数
Average-计算文件中double类型数字的平均数://Average-计算文件中double类型数字的平均数 #include<iostream> #include<fstream> #include<cstdlib> intmain() { usingnamespacestd; ifstreamfin; ofstreamfout; doubletem,sum,aver; intcount=0; ..
分类:其他好文   时间:2014-09-02 12:37:45    阅读次数:173
MFC多网卡获取IP
//头文件包含#include"stdafx.h"#include<WinSock2.h>#include<Iphlpapi.h>#include<iostream>usingnamespacestd;#pragmacomment(lib,"iphlpapi.lib")//函数声明voidoutput(PIP_ADAPTER_INFOpIpAdapterInfo);//程序入口int_tmain(intargc,_TCHAR*argv[]){ //..
分类:其他好文   时间:2014-09-02 12:36:55    阅读次数:226
Median-求中位数,文件中数字升序排列
Median-求中位数,文件中数字升序排列://Median-求中位数,文件中数字升序排列 #include<iostream> #include<fstream> #include<cstdlib> intmain() { usingnamespacestd; ifstreamfin; ofstreamfout; doublemedian,tem1,tem2; intcount=1; fin.op..
分类:其他好文   时间:2014-09-02 12:34:15    阅读次数:196
适配器模式
适配器模式: 将一个类的接口转换成客户希望的另外一个接口。Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以在一起工作。 适用场景: 复用现有的类,但接口却不相同。 #include?<iostream> usi...
分类:其他好文   时间:2014-09-01 18:00:43    阅读次数:210
inputs a date (e.g. July 4, 2008) and outputs the day of the week-根据输入日期判断星期几
inputsadate(e.g.July4,2008)andoutputsthedayoftheweek-根据输入日期判断星期几://inputsadate(e.g.July4,2008)andoutputsthedayoftheweek #include<iostream> #include<string> usingnamespacestd; boolleapyear; voidgetInput(string&a,int&month,in..
分类:其他好文   时间:2014-09-01 15:59:54    阅读次数:171
average and standard deviation-平均数和标准差
averageandstandarddeviation-平均数和标准差(4个数),允许重复计算://averageandstandarddeviation-平均数和标准差 #include<iostream> #include<cmath> usingnamespacestd; doubleaverage(doubles1,doubles2,doubles3,doubles4); doublestandard_deviation(d..
分类:其他好文   时间:2014-09-01 02:55:32    阅读次数:549
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!