疑问void max(const int x, const int y);void
max(int x, int
y);为什么报错:重复声明解释“这种差异并不影响传递至函数的对象...其原因在于实参传递的方式。复制形参时并不考虑形参是否为const---函数操纵的只是副本。函数无法修改实参...这两...
分类:
其他好文 时间:
2014-07-22 23:16:32
阅读次数:
297
//华为编程:筷子,找到第一个单对的筷子#include #define max 37int
main(){ int n,i,j; int a[max]; int flag=0; int error=-1; scanf("%d",&n);
if(n>max) ...
分类:
其他好文 时间:
2014-07-22 23:13:33
阅读次数:
339
VRay 2.0 SP1 2.10.01 for 3ds max
9/2008/2009/2010/2011/2012 32/64位 顶渲简体中文版+英文版[中国室内设计论坛-室内人]对最新版本的V-Ray2.0
SP1的所有版本,重新进行了一次彻底的汉化,继以前版本的彻底、稳定之处特点外,还对所发...
分类:
其他好文 时间:
2014-07-22 23:12:35
阅读次数:
697
//华为编程:筷子,找到第一个单对的筷子#include #define max 37int
main(){ int n,i,j; int a[max]; int flag=0; int error=-1; scanf("%d",&n);
if(n>max) { printf("...
分类:
其他好文 时间:
2014-07-22 23:12:15
阅读次数:
325
关于这个问题我们首先来看一下AIX的vg的3种类型:original vg 普通卷组big
vg 大卷组scalable vg 动态的或者可扩展的卷组如何快速区分这三组卷组呢?通过其参数MAX
PVS,上述3个类型的卷组对应的限制是:32、128、1024;除此之外,还可以通过readvgda命令来...
分类:
其他好文 时间:
2014-07-22 23:10:53
阅读次数:
451
题目来源:http://poj.org/problem?id=3384分析:用半平面交将多边形的每条边一起向“内”推进R,得到新的多边形(半平面交),然后求多边形的最远两点。代码如下:const
double EPS = 1e-10;const int Max_N = 105 ;struct Poi...
分类:
其他好文 时间:
2014-05-01 14:35:31
阅读次数:
528
C++中,申请字符串数组可用new实现:char ** list = new
char*[MAX_NUM];for (int i = 0; i,则通过 if (list[qid] != “”) 检测是否初始化。
分类:
编程语言 时间:
2014-05-01 11:46:12
阅读次数:
587
//判断value是小于等于max的数字function isNumberMax(value,
max){ if(!isNumber(value) || !isNumber(max)){ return false; } if(parseInt(value)
= min){ return true; ...
分类:
编程语言 时间:
2014-05-01 10:53:41
阅读次数:
426
当油量不够时从走过的油站中选最大加油量的
#include
#include
#include
#include
using namespace std;
#define MAX_N 10005
struct node{
int dist,fuel;
}t[MAX_N];
bool cmp(const node &a,const node &b)
{
return a.dist<b.dis...
分类:
其他好文 时间:
2014-04-28 10:44:43
阅读次数:
335
大数乘法的步骤(先戳我看看大数加法的思想):
首先我们输入要相乘的2个数字,然后逆序。用2层循环来相乘,把下标[i]*[j]计算的结果放在下标[i*j-1]中(下标从1开始),建议及时处理进位问题(char字符范围比较小)。
最后从高位开始输出。
#include
#include
#define MAX 1000
using namespace std;
void InputN...
分类:
其他好文 时间:
2014-04-28 10:24:42
阅读次数:
371