码迷,mamicode.com
首页 >  
搜索关键字:applied pi ccalculat    ( 3665个结果
数学图形之螺旋管
(1)螺旋管vertices = D1:720 D2:72u = from 0 to (10*PI) D1v = from 0 to (2*PI) D2a = 3x = (a + cos(v)) * cos(u)z = (a + cos(v)) * sin(u)y = sin(v) + u(2)螺旋...
分类:其他好文   时间:2014-08-09 15:48:28    阅读次数:322
数学图形之锥体
(1)圆锥面vertices = dimension1:72 dimension2:72u = from 0 to (2*PI) dimension1v = from (-5) to (5) dimension2x = v*cos(u)y = vz = v*sin(u)(2)椭圆锥面#http://...
分类:其他好文   时间:2014-08-09 15:47:48    阅读次数:310
UvaLive6662 The Last Ant 模拟
UvaLive6662PDF题目题意:给出隧道长度L,蚂蚁数量N,各蚂蚁位置Pi、前进方向Di,都为整数(前进方向为L或R),蚂蚁速度为1cm每秒,两蚂蚁若在整数点相遇则都反向,若不在整数点相遇则继续向前。求最后一个走出隧道的蚂蚁的编号。蚂蚁按编号1~n给出,隧道头尾位置为0和L。题解:模拟。当然我...
分类:其他好文   时间:2014-08-08 23:38:56    阅读次数:337
Java工具类
目录 MathRandomDateCarlendarDateFormatSimpleDateFoematComparatorCloneMath System.out.println("PI的值:"+Math.PI); System.out.println("-10的绝对值:"+Math...
分类:编程语言   时间:2014-08-08 20:55:26    阅读次数:371
POJ 1061 青蛙的约会
中文题啊中文题,每次看到都是很兴奋的~ 题目大意:自己看,全是中文~ #include #include #include #include #include #include #include #include #include #include #include #define eps 1e-6 #define pi acos(-1.0) #define i...
分类:其他好文   时间:2014-08-08 16:03:56    阅读次数:192
HDU 4917 Permutation
题意: 一个序列p1、p2、p3……pn是由1、2、3……n这些数字组成的  现给出一些条件pi 思路: 很容易想到用一条有向的线连接所有的pi和pj  那么就构成了有向无环图(题中说有解所以无环) 又因为pi各不相同  那么题目就变成了有向无环图的拓扑排序的种类数 题目中边数较少  所以可能出现不连通情况  我们先讨论一个连通集合内拓扑排序的种类数 题目中m较小  可以利用状...
分类:其他好文   时间:2014-08-08 12:54:25    阅读次数:233
[zjoi2010]cheese
题目: 贪吃的老鼠(cheese.c/cpp/pas/in/out) 时限:每个测试点10秒[问题描述] 奶酪店里最近出现了m只老鼠!它们的目标就是把生产出来的所有奶酪都吃掉。奶酪店中一天会生产n块奶酪,其中第i块的大小为pi,会在第ri秒...
分类:其他好文   时间:2014-08-07 22:49:45    阅读次数:462
指数平滑(Exponential smoothing)
Exponential smoothingFrom Wikipedia, the free encyclopedia Exponential smoothingis a technique that can be applied totime seriesdata, either to produ....
分类:其他好文   时间:2014-08-07 12:14:00    阅读次数:249
计算机常识--Linux篇
ping命令    使用ping检查连通性有6个步骤:①使用ifconfig -a 观察本地网络设置是否正确 ②ping 127.0.0.1 127.0.0.1回送地址,为了检查本地的tcp/ip协议有没有设置好。③ping 本机ip地址。 为了检查本机的ip地址是否设置有误。④png 本网网关或本网ip地址。为了检查硬件设备是否有问题,也可以检查本地网络连接是否正常(非局域网可以忽略)。⑤pi...
分类:系统相关   时间:2014-08-06 23:12:32    阅读次数:417
java中的关键字static(静态变量)和final定义常量
1 package point; 2 3 class Point { 4 5 int x = 0; 6 int y = 0; 7 static int z = 100; // 定义静态变量z,类变量 8 static final double PI = ...
分类:编程语言   时间:2014-08-06 22:45:07    阅读次数:292
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!