码迷,mamicode.com
首页 >  
搜索关键字:or invalid scale fac    ( 6983个结果
杭电2048
1 #include 2 float fac(int a)//阶乘 3 { 4 if(a==0) 5 return 1; 6 else 7 return a*fac(a-1); 8 } 9 int main()10 {11 int t,i,...
分类:其他好文   时间:2014-09-13 06:12:04    阅读次数:270
POJ 3358
此题的主要还是如何把小数化作分数来解答。设p/q。对于二进制(三进制,四进制一样),若p>q便商1,取mod,p*2-->p,然后再作p/q,若p#include #include #include #define LL __int64using namespace std;LL fac[10000...
分类:其他好文   时间:2014-09-12 20:38:14    阅读次数:258
C/C++ 生成错误
1、链接器工具错误 LNK1123:fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt转换到 COFF 期间失败: 文件无效或损坏VS2010下的解决方案:安装sp1的补丁:http://ww...
分类:编程语言   时间:2014-09-12 13:29:23    阅读次数:172
css3 翻转和旋转的差别
我曾经一直以为旋转跟翻转一样,今日自己旋转了好久都发觉跟翻转差一点点,纠结了十几分钟才明确,仅仅能怪自己的立体感太差了。 css3中的transform中有旋转,放缩,倾斜,平移的功能,分别相应的属性是:rotate,scale,skew,translate 旋转:(rotate)...
分类:Web程序   时间:2014-09-11 23:37:42    阅读次数:320
重构之2.Replace Type Code with Class(以类取代类型码)
场景 在一个类中我们经常会下定义一些类型码,如: public static final int INVALID=0; public static final int VALID=1; 我们可以将这些数值转换为一个类 前提条件: 只有当类型码是纯粹数据时(类型码不会在Switch语句中引起行为的变化时),你才能以类来取代它 修改前...
分类:其他好文   时间:2014-09-10 23:57:01    阅读次数:607
测试工程执行,遇到sql-mapconfig-2.dtd文件不存在的问题
[persistence/sql-map-.xml]; nested exception is java.io.FileNotFoundException: class path resource [sql-map-config-2.dtd] cannot be opened because it does not exist at org.springframework.beans.fac...
分类:数据库   时间:2014-09-10 12:49:40    阅读次数:402
php 精准计算模块bcmath
bc是Binary Calculator的缩写。bc*函数的参数都是操作数加上一个可选的 [int scale],比如string bcadd(string $left_operand, string $right_operand[, int $scale]),如果scale没有提供,就用bcscale的缺省值。这里大数直接用一个由0-9组成的string表示,计算结果返回的也是一个 string...
分类:Web程序   时间:2014-09-09 21:37:39    阅读次数:499
关于手机meta
下面是手机网页的一些认识initial-scale - 初始的缩放比例 minimum-scale - 允许用户缩放到的最小比例 maximum-scale - 允许用户缩放到的最大比例 user-scalable - 用户是否可以手动缩放media="(device-height: 568...
分类:移动开发   时间:2014-09-09 19:49:59    阅读次数:260
dp 与px互相转换
/** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) */ public static int dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; ...
分类:其他好文   时间:2014-09-09 16:14:19    阅读次数:175
meta中的viewport指令
网页手机wap2.0网页的head里加入下面这条元标签,在iPhone的浏览器中页面将以原始大小显示,并不允许缩放。 width - viewport的宽度 height - viewport的高度 initial-scale - 初始的缩放比例minimum-scale - 允许用户缩放到的最小....
分类:其他好文   时间:2014-09-09 15:19:28    阅读次数:230
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!