赞助
摘要: C++中不允许这样的写法 85<= score <=100;你要想表示85<=score<=100的话只能这么写score>=85&&score<=100 阅读全文
posted @ 2015-01-26 15:24 车臣 阅读(2845) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 string LongToString(long l) 6 { 7 stringstream str; 8 str>l; 15 string str = LongToString(l); 16 size_t len = str.... 阅读全文
posted @ 2015-01-15 11:15 车臣 阅读(2997) 评论(0) 推荐(0) 编辑
摘要: 第三方函数、头文件、测试工程下载地址:http://download.csdn.net/detail/u012958937/8361733 阅读全文
posted @ 2015-01-14 17:01 车臣 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 1 #include2 void main()3 {4 int i=15,j=4;5 float h;6 h=(float) (15*100/4)/100;7 printf("%.2f",h);8 }注:%f:不指定宽度,整数部分全部输出并输出6位小数。 %m.nf:输出共占m列,其中有n位... 阅读全文
posted @ 2015-01-13 16:35 车臣 阅读(23410) 评论(0) 推荐(0) 编辑
摘要: 转载:http://blog.csdn.net/infoworld/article/details/42033097 场景: 1. 通常生成文件时需要一个文件名,而生成文件名的方式可能是通过用户输入的字符,但是有些字符在windows上是不能作为文件名的,强行创建这类文件会失败。 2.一般可以通过正 阅读全文
posted @ 2015-01-13 11:28 车臣 阅读(4575) 评论(0) 推荐(0) 编辑
摘要: 转载:http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=26354188&id=3198604 阅读全文
posted @ 2015-01-05 18:21 车臣 阅读(6388) 评论(2) 推荐(0) 编辑
摘要: 在上述代码中 FindFirstFile第一个参数需要一个路径,但要写*.*,表示从所有文件中找到的第一个.但写f:或者f:双斜杠都返回无效句柄. 如果f:\\1.txt 则对特定文件进行搜索,返回找到的第一个 找到的文件的文件结构被记录在WIN32_FIND_DATA结构体里 FindNextFi 阅读全文
posted @ 2014-12-12 09:23 车臣 阅读(11091) 评论(0) 推荐(0) 编辑
摘要: 参照:http://www.cnblogs.com/kzloser/archive/2013/03/11/2909221.html 参照:http://blog.csdn.net/pjchen/article/details/170606 阅读全文
posted @ 2014-12-06 21:01 车臣 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 转载:http://www.seacha.com/article.php/knowledge/windows/mfc/2011/0423/335.html VC中GetLastError()获取错误信息的使用 在VC中编写应用程序时,经常需要涉及到错误处理问题。许多函数调用只用TRUE和FALSE来 阅读全文
posted @ 2014-12-04 14:56 车臣 阅读(6384) 评论(0) 推荐(0) 编辑
摘要: vector: 1.delete element 转载:http://www.cnblogs.com/xudong-bupt/p/3522457.html 2.find element 转载:http://blog.sina.com.cn/s/blog_7c18235d0100tnjt.html 3 阅读全文
posted @ 2014-12-01 11:31 车臣 阅读(7025) 评论(0) 推荐(1) 编辑