码迷,mamicode.com
首页 >  
搜索关键字:namespace    ( 41927个结果
[算法练习] 把字符串转换成整数
题目说明: 输入一个表示整数的字符串,把该字符串转换成整数并输出。例如输入字符串"345",则输出整数345。 程序代码: #include using namespace std; int StrToInt(const char* szValue, int nBase = 0, bool* bVa...
分类:编程语言   时间:2015-10-12 10:32:29    阅读次数:149
第6章 函数 习题
---恢复内容开始---6.27 编写一个函数,它的参数是Initializer_lister类型的对象,函数功能是计算列表中所有元素之和。 1 #include 2 using namespace std; 3 4 int iCount (initializer_list il) 5 { 6...
分类:其他好文   时间:2015-10-12 10:26:25    阅读次数:121
vijosP1164 曹冲养猪
vijosP1164 曹冲养猪链接:https://vijos.org/p/1164【思路】 数学。 如果x不能满足模公式则+gcd,gcd=a的积(a互质)使加上gcd后依然满足前面的模公式。【代码】 1 #include 2 using namespace std; 3 4 int main(....
分类:其他好文   时间:2015-10-12 09:14:24    阅读次数:169
【006】求pi的近似值
【题目】 用下面公式求π的近似值。π/4≈1-1/3+1/5-1/7+…直到最后一项的绝对值小于10的-7次方为止。根据给定的算法很容易编写程序如下:【解答】#include #include #include using namespace std;int main( ){int s=1;do.....
分类:其他好文   时间:2015-10-12 00:29:15    阅读次数:138
ZOJ Problem Set - 3512Financial Fraud
左偏树维护中位数。低级错误:循环里的变量#include#include#include#includeusing namespace std;int n;struct Node{ int x,dis,size; Node *l,*r; void clear() ...
分类:其他好文   时间:2015-10-12 00:23:32    阅读次数:202
OpenCV(C++版)图像读取,创建,复制,保存,显示
http://blog.163.com/yuyang_tech/blog/static/21605008320132642254689/一个小例子:#include "stdafx.h"#include using namespace std;using namespace cv;int _tmai...
分类:编程语言   时间:2015-10-11 23:06:52    阅读次数:251
浅论C++数组传入方法后不能用sizeof计算到正确的数组大小
C++中我们经常会用到sizeof()来计算数组的大小例如: 1 #include 2 using namespace std; 3 4 void Length(int *p) 5 { 6 cout<<sizeof(p)<<" "<<sizeof(int)<<endl; 7 } 8 9...
分类:编程语言   时间:2015-10-11 23:03:09    阅读次数:212
ZOJ 3913 Bob wants to pour water
ZOJ Monthly, October 2015 K题二分答案+验证#include#include#include#include#includeusing namespace std;const double pi=3.1415926535898;const int maxn=100000+1...
分类:其他好文   时间:2015-10-11 22:50:57    阅读次数:230
用鼠标在窗口中画方形
//用鼠标在窗口中画方形//作者:sandy//时间:2015-10-7//user can draw boxes on the screen#include #include using namespace std;CvRect box;bool drawing_box=false;//定义一个回...
分类:其他好文   时间:2015-10-11 22:50:56    阅读次数:236
在窗口中绘画
// 鼠标绘图#include using namespace std;//#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")const char *pstrWindowsMouseDrawTitle...
分类:其他好文   时间:2015-10-11 22:48:13    阅读次数:326
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!