Redian新闻
>
大王, 捞不捞?
avatar
大王, 捞不捞?# Stock
s*1
1
去面试被要求用纯C写程序,不能有C++ syntax,我写的代码如下:
//Assume ids[] is to get specific_id in aliasID
//num is used to fix the length of ids[]
//alias is used to get the aliasID array
//aliasNum is used to get the length of array alias
/*
successFind = ture means return ids[] with length of num
successFind = false means return ids[] is null
or the length of ids[] is aliasNum (num > aliasNum)
*/
int* GetSomeIDs(int num, aliasID* &alias, int &aliasNum, bool& successFind)
{
successFind = true;
aliasNum = GetNumberOfAliases();
int idsNum = num;
//when num > aliasNum we try to return ids with the length of aliasNum
if(num > aliasNum)
{
printf("There are not enough alias was find and the found alias is %d n",
aliasNum);
successFind = false;
int* ids = (int*) malloc(aliasNum * sizeof(int));
idsNum = aliasNum;

if(aliasNum != 0 && ids == NULL)
{
//when there are not enough memory space for num of int (ids)
printf("There are not enough memory space for ids n");
idsNum = 0;
}
}
else
{
int* ids = (int*) malloc(num * sizeof(int));
}
alias = (aliasID*) malloc(aliasNum * sizeof(aliasID));
if(aliasNum != 0 && alias == NULL)
{
//when there are not enough momery space for aliasNum of aliasID
printf("There are not enough memory space for alias n");
free(ids);
successFind = false;
}
else
{
for(int i=0; i{
alias[i] = GetNextAlias();
}
}
if(alias)
{
for(int i=0; iids[i] = alias[i] -> specific_id;
}
return ids;
}
被告知有C++ syntax, 但是我真的不知道哪些部分用到了C++ syntax,还有我程序有不
足的地方有大神来给指点一下吗?
avatar
f*4
2
一直觉得宝宝版的JMS最热心了,我现在给爸妈准备材料B2签证,时间比较急,遇到自
己搞不
定的问题了,恳请JMS给个意见吧!!
但是,他们现在正在贷款买一个房子,每个月的贷款和利息直接从我爸的工资存折上扣
除,扣
了以后余额为0.
现在他们投资股市大概20万,存折上有现在8万
另外还有一处房产,有房产证。
我妈退休,工资1000
疑问:像这种情况,会不会对签证很不利?因为身上有贷款。。。
那这样的话,是不是最好来美费用2方共同负担比较好?我们这边有存款3万(2万自己
的+1万
借的)。
我们的存款也有问题:我是自费学生,我I20上显示一年需要19000费用,虽然远花不了
。我还
没有毕业。那我们自己那2万是不是就要抵上这个费用了呢?
借的一万刀到爸妈签证时还有1个星期存够3个月,所以在想或者改期签证,或者只提供
最后2
个月的statement?
avatar
r*m
3
捞不捞?捞不捞?
俺先偷偷小捞一点。
avatar
b*0
4
引用& 好像是c++的
avatar
n*y
5
you can borrow some money...
and keep it in your saving account
for a short time... then get a statement...
avatar
r*t
6
嘻嘻,小声点,我刚才捞了一点。
avatar
p*u
7
use pointers instead of references.

【在 s*******1 的大作中提到】
: 去面试被要求用纯C写程序,不能有C++ syntax,我写的代码如下:
: //Assume ids[] is to get specific_id in aliasID
: //num is used to fix the length of ids[]
: //alias is used to get the aliasID array
: //aliasNum is used to get the length of array alias
: /*
: successFind = ture means return ids[] with length of num
: successFind = false means return ids[] is null
: or the length of ids[] is aliasNum (num > aliasNum)
: */

avatar
f*4
8
已经借了,只是问题是存了不到3个月。。。
楼上MM意思是,不需要3个月的记录,只要current的statement么?
貌似很多人说必需3个月。。。所以晕了
avatar
b*r
9
帮主,我对你某个理论是不同意的。
个股到大盘6000点价位不代表就可以捞了。
市场几十年来大部分时间一直向上,个股不知道死了多少。
avatar
l*u
10
//是C++ :)
aliasNum = GetNumberOfAliases();
int idsNum = num;/* C++ */

【在 s*******1 的大作中提到】
: 去面试被要求用纯C写程序,不能有C++ syntax,我写的代码如下:
: //Assume ids[] is to get specific_id in aliasID
: //num is used to fix the length of ids[]
: //alias is used to get the aliasID array
: //aliasNum is used to get the length of array alias
: /*
: successFind = ture means return ids[] with length of num
: successFind = false means return ids[] is null
: or the length of ids[] is aliasNum (num > aliasNum)
: */

avatar
h*n
11
current statement可以了。

【在 f*****4 的大作中提到】
: 已经借了,只是问题是存了不到3个月。。。
: 楼上MM意思是,不需要3个月的记录,只要current的statement么?
: 貌似很多人说必需3个月。。。所以晕了

avatar
r*m
12
啥理论啊?我没发表过理论啊.
个股捞什么当然要看个人眼光了。大盘代表了整体估值水平。同样的股票,大盘跌的时
候一般也会更便宜,没错吧?
avatar
d*d
13
能不能跳过C/C++ 的工作?
太惨不忍赌了。就算你背下这个答也过不了的。

【在 s*******1 的大作中提到】
: 去面试被要求用纯C写程序,不能有C++ syntax,我写的代码如下:
: //Assume ids[] is to get specific_id in aliasID
: //num is used to fix the length of ids[]
: //alias is used to get the aliasID array
: //aliasNum is used to get the length of array alias
: /*
: successFind = ture means return ids[] with length of num
: successFind = false means return ids[] is null
: or the length of ids[] is aliasNum (num > aliasNum)
: */

avatar
c*e
14
出示房产证就行,不用说是否还清了。自费的话,更重要的是
证明你父母很有钱。
avatar
r*t
15
想不赚钱真的很难啊。
我的ATM什么时候才可以开始存钱呢?
总是吐钱给我。
avatar
s*1
16

不懂啊,什么叫背下答案啊?

【在 d********d 的大作中提到】
: 能不能跳过C/C++ 的工作?
: 太惨不忍赌了。就算你背下这个答也过不了的。

avatar
l*s
17
捞了啥?

【在 r*****t 的大作中提到】
: 嘻嘻,小声点,我刚才捞了一点。
avatar
r*t
18
随便什么都可以啊。
什么fas, ddm, udow, qld,dia只要是正向的都可以
avatar
l*s
19
好,捞一点。。。
错了明天吃炒螃蟹!!!

【在 r*****t 的大作中提到】
: 随便什么都可以啊。
: 什么fas, ddm, udow, qld,dia只要是正向的都可以

avatar
r*t
20
靠,你也进来捞啊,我看来要先跑路了。
落袋为安。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。