上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 74 下一页
  2015年12月21日
摘要: # -*- coding: utf-8 -*-# created by vince67 Feb.2014# nuovince@gmail.comimport reimport osimport subprocessdef run(project_dir, date_from, date_to, se... 阅读全文
posted @ 2015-12-21 20:23 莫水千流 阅读(1900) 评论(4) 推荐(0) 编辑
摘要: 大纲一 前言二 for语句的基本用法三 for /f (delims、tokens、skip、eol、userbackq、变量延迟)四 for /r (递归遍历)五 for /d (遍历目录)六 for /l (计数循环)一、前言在批处理中,for是最为强大的命令语句,它的出现,使得解析文本内容、遍... 阅读全文
posted @ 2015-12-21 20:18 莫水千流 阅读(2632) 评论(0) 推荐(0) 编辑
摘要: 假设一位员工去年一年的工资总额是 72000元,现在每月从工资中划出 100元存到其个人的企业年金账户中,那么,30年后职工退休,他可以拿到多少企业年金?假设一位员工去年一年的工资总额是72000元,现在每月从工资中划出 100元存到其个人的企业年金账户中,同时企业为他存300元(缴费比例为 1:3... 阅读全文
posted @ 2015-12-21 13:45 莫水千流 阅读(300) 评论(0) 推荐(0) 编辑
  2015年12月20日
摘要: #include #include #include #include #include using namespace std;const double eps = 1e-8;const double pi = acos(-1);struct POINT{double x, y;POINT(dou... 阅读全文
posted @ 2015-12-20 18:54 莫水千流 阅读(407) 评论(0) 推荐(0) 编辑
  2015年12月18日
摘要: https://brilliant.org/wiki/section-formula/ 阅读全文
posted @ 2015-12-18 15:10 莫水千流 阅读(186) 评论(0) 推荐(0) 编辑
  2015年12月17日
摘要: account for sth:be the explanation of sth; explain the cause of sth 作某事物的解释; 解释某事物的原因:His illness accounts for his absence.他因病缺席.lead to sth:have sth ... 阅读全文
posted @ 2015-12-17 14:16 莫水千流 阅读(1463) 评论(0) 推荐(0) 编辑
  2015年12月15日
摘要: 1、安装pclint a. 从http://download.csdn.net/detail/finewind/8426979下载破解版的pclint9i版; b. 点击pclint9setuo.exe将pclint安装到C:\lint下(也可以是其它位置); c. 将patch下的内容拷贝到C:\... 阅读全文
posted @ 2015-12-15 19:57 莫水千流 阅读(1469) 评论(1) 推荐(0) 编辑
  2015年12月14日
摘要: .表示时间的介词1)in ,on,at 在……时一.in,on在方位名词前的区别 1.in表示A地在B地范围之内.如:Taiwan is in the southeast of China.2.on表示A地与B地接壤、毗邻.如:North Korea is on the east of China.... 阅读全文
posted @ 2015-12-14 09:44 莫水千流 阅读(482) 评论(0) 推荐(0) 编辑
  2015年12月12日
摘要: 1. a ⊕ a = 02. a ⊕ 0 = a3. a ⊕ b = b ⊕ a4. a ⊕b ⊕ c = a ⊕ (b ⊕ c) = (a ⊕ b) ⊕ c;5. d = a ⊕ b ⊕ c 可以推出 a = d ⊕ b ⊕ c.6. a ⊕ b ⊕ a = b.7.若x是二进制数0101,y是二... 阅读全文
posted @ 2015-12-12 11:52 莫水千流 阅读(3543) 评论(1) 推荐(0) 编辑
摘要: 在计算机系统中,数值一律用补码来表示(存储)。主要原因是使用补码可以将符号位和其他位统一处理;同时,减法也可以按加法来处理。另外,两个用补码表示的数相加时,如果最高位(符号位)有进位,则进位被舍弃。补码跟源码的转换过程几乎是相同的。补码概述 求给定数值的补码表示分以下两种情况:⑴正数的补码 与 ... 阅读全文
posted @ 2015-12-12 09:59 莫水千流 阅读(3031) 评论(1) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 74 下一页