码迷,mamicode.com
首页 >  
搜索关键字:cf round    ( 18146个结果
delphi的取整函数round、trunc、ceil和floor
delphi的取整函数round、trunc、ceil和floor 首先引入math单元uses math;1.Round(四舍六入五留双)功能说明:对一个实数进行四舍五入。(按照银行家算法) 例:vari, j: Integer;begini := Round(1.5); // i等于2j :=....
分类:其他好文   时间:2014-06-18 21:59:23    阅读次数:261
sql 保留小数
select ROUND(12.555, 2)--12.560select cast(12.5550 as decimal(10,2))--12.56
分类:数据库   时间:2014-06-18 15:38:52    阅读次数:197
Oracle数值函数
/*abs(n)返回参数n所指定数值的绝对值(如果参数值为NULL,则返回结果为NULL,下同)。*/--SELECT ABS(-3.14) FROM DUAL; --3.14/*round(n[, m])返回对参数n进行四舍五入处理后的结果。参数n可以是任意数字、m则必须为整数。如果省略参数m,....
分类:数据库   时间:2014-06-15 16:48:23    阅读次数:300
Codeforces Round #249 (Div. 2) A. Black Square
水题#include #include #include using namespace std;int main(){ vector a(4); cin >> a[0] >> a[1]>>a[2]>>a[3]; string str; cin >> str; int res = 0; for(in...
分类:其他好文   时间:2014-06-14 23:00:14    阅读次数:249
Codeforces Round #247 (Div. 2) B - Shower Line
模拟即可#include #include #include using namespace std;int main(){ vector a(5); for(int i = 0; i > g[i][j]; } } int maxHappiness = 0; ...
分类:其他好文   时间:2014-06-14 22:57:10    阅读次数:207
Codeforces Round #249 (Div. 2) B. Pasha Maximizes
看到题目的时候,以为类似插入排序,比较第i个元素和第i-1个元素,如果第i个元素比第i-1个元素小,则不交换如果第i个元素比第i-1个元素大,则交换第i个元素和第i-1个元素 继续比较第i-1个元素与前一个元素,直到前一个元素大为止交换元素次大于等于k则停止但对测试用例1234 3则出现问题,如果....
分类:其他好文   时间:2014-06-14 21:46:18    阅读次数:191
Codeforces Round #245 (Div. 2) A - Points and Segments (easy)
水到家了#include #include #include using namespace std;struct Point{ int index, pos; Point(int index_ = 0, int pos_ = 0){ index = index_; ...
分类:其他好文   时间:2014-06-14 21:21:40    阅读次数:281
Codeforces Round #245 (Div. 2) B - Balls Game
暴利搜索即可#include #include #include using namespace std;int main(){ int n,k,x; cin >> n >> k >> x; vector c(n); for(int i = 0 ; i > c[i]; ...
分类:其他好文   时间:2014-06-14 18:47:42    阅读次数:206
WinCE的C#编程,对float型进行四舍五入保留两位小数,小数进行四舍五入操作,Math.Round的应用案例。
对float型进行四舍五入,小数进行四舍五入操作...
分类:Windows程序   时间:2014-06-14 14:57:41    阅读次数:618
linux命令
压缩与解压缩: tar xvf wordpress.tar       ####解压tar格式的文件#### tar -tvf myfile.tar       ####查看tar文件中包含的文件 #### tar cf toole.tar tool       ####把tool目录打包为toole.tar文件#### tar cfz xwyme.tar.gz tool      ###...
分类:系统相关   时间:2014-06-14 10:43:22    阅读次数:273
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!