码迷,mamicode.com
首页 >  
搜索关键字:expr bc    ( 3993个结果
Python学习笔记----序列共性
序列操作符 作用seq[ind] 获得下标为ind 的元素seq[ind1:ind2] 获得下标从ind1 到ind2 间的元素集合seq * expr 序列重复expr 次seq1 + seq2 连接序列seq1 和seq2obj in seq 判断obj 元素是否包含在seq 中obj not ...
分类:编程语言   时间:2014-07-23 12:47:56    阅读次数:290
sizzle分析记录: 自定义伪类选择器
可见性:hidden:visible隐藏对象没有宽高,前提是用display:none处理的jQuery.expr.filters.hidden = function( elem ) { // Support: Opera -1; };}),取空递归这个节点,排除nodeType大于6...
分类:其他好文   时间:2014-07-22 22:43:54    阅读次数:230
Linux shell 脚本实例【转】
1. 写一个脚本,利用循环计算10的阶乘#!/bin/shfactorial=1for a in `seq 1 10`do factorial=`expr $factorial \* $a`doneecho "10! = $factorial"2. 写一个脚本,执行后,打印一行提示“Please i...
分类:系统相关   时间:2014-07-22 00:06:35    阅读次数:502
UVA - 1494 Qin Shi Huang's National Road System (类次小生成树)
Description During the Warring States Period of ancient China(476 BC to 221 BC), there were seven kingdoms in China -- they were Qi, Chu, Yan, Han, Zhao, Wei and Qin. Ying Zheng was the king of the...
分类:其他好文   时间:2014-07-21 23:27:49    阅读次数:437
poj 2288 Islands and Bridges
题意: 给你一个双向连通图,求 获得权值最大 的 哈密顿通路的 权值 和 这个权值对应的数目; 其中权值计算方法是 列如 ABCD 权值是a+b+c+d+ab+bc+cd 如果 A,B,C 和B,C,D 可构成三角形分别加上abc,bcd;这个题 和poj 3311 很相像: 那个需要记录一个最后....
分类:其他好文   时间:2014-07-21 09:32:05    阅读次数:263
cypthon的visual studio编译环境安装
按照教程,如果出现vcvarsall.bat找不到的情况,则需要安装正确版本的visual studio http://docs.cython.org/src/tutorial/cython_tutorial.html python 2.7.x使用的是vs2008,如果没有安装,可以安装vs2008 expr...
分类:其他好文   时间:2014-07-20 23:34:08    阅读次数:644
UVA 10036 Divisibility
Consider an arbitrary sequence of integers. One can place + or - operators between integers in the sequence, thus deriving different arithmetical expr...
分类:其他好文   时间:2014-07-19 22:37:50    阅读次数:243
AIX 内存使用情况
cat > WHAT_EVER_YOU_WANT.sh#!/usr/bin/ksh#memory calculatorum=`svmon -G | head -2|tail -1| awk {'print $3'}`um=`expr $um / 256`tm=`lsattr -El sys0 -a ...
分类:其他好文   时间:2014-07-19 18:14:29    阅读次数:294
【Linux】linux经常使用基本命令
Linux中很多经常使用命令是必须掌握的,这里将我学linux入门时学的一些经常使用的基本命令分享给大家一下,希望能够帮助你们。这个是我将鸟哥书上的进行了一下整理的,希望不要涉及到版权问题。1、显示日期的指令: date2、显示日历的指令:cal3、简单好用的计算器:bc怎么10/100会变成0呢?...
分类:系统相关   时间:2014-07-19 14:05:57    阅读次数:232
实物追踪配置说明
在扩展数据里配置条码数据,使用过的条码不再出现selectBC_BARCODE,BC_UPDATEfromTBARCODEwhereBC_BARCODEnotin(selectBILL_KD_ITEMfromTBILL)andBC_USER_ID=‘$G_USER‘2.在模板里增加选择或者直接输入条码框,实物条码必须要用这个字段BILL_KD_ITEM<tdstyle="BACKGROUND-COL..
分类:其他好文   时间:2014-07-19 02:14:15    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!