s*x
2 楼
c++高手帮帮忙,有一个文件
A01 B01 (13,30,50) (20, 40, 60)
A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
pair.
我现在的方法是定义四个string, a, b, c, d
fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
来(比如像perl里的split function)?谢了。
Update: I solved the problem. Hope it can help others:
inputFile >> tmp >> tmp >> start >> end ;
....
num = strtok (start, ",");
while (num != NULL)
A01 B01 (13,30,50) (20, 40, 60)
A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
pair.
我现在的方法是定义四个string, a, b, c, d
fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
来(比如像perl里的split function)?谢了。
Update: I solved the problem. Hope it can help others:
inputFile >> tmp >> tmp >> start >> end ;
....
num = strtok (start, ",");
while (num != NULL)
c*h
3 楼
【 以下文字转载自 JobHunting 讨论区 】
发信人: cockroach (冬冬), 信区: JobHunting
标 题: 问一下在 national lab 的同修
发信站: BBS 未名空间站 (Wed Feb 18 16:11:16 2009), 站内
我暑假可能去 national lab 做个 intern。我现在是 F1,visa 已经过期。他们似乎
要求我有一个新的 visa。我已经发信跟他们说了一般情况下只要我留在美国境内我不
需要有效的 visa。这里我想问一下过来人有没有类似的情况。
发信人: cockroach (冬冬), 信区: JobHunting
标 题: 问一下在 national lab 的同修
发信站: BBS 未名空间站 (Wed Feb 18 16:11:16 2009), 站内
我暑假可能去 national lab 做个 intern。我现在是 F1,visa 已经过期。他们似乎
要求我有一个新的 visa。我已经发信跟他们说了一般情况下只要我留在美国境内我不
需要有效的 visa。这里我想问一下过来人有没有类似的情况。
s*t
4 楼
1,some coefficients are significant, but their signs are wrong, or say, not
consistent with my expectation.
2, the variable is not significant when it is put into the model, but with c
ertain variables included in the model, they become significant.
consistent with my expectation.
2, the variable is not significant when it is put into the model, but with c
ertain variables included in the model, they become significant.
i*i
5 楼
邮件里倒是不时的收到一个提醒,说是有新的opening了,但是投过去后没有丁点反应。
最近有人收到那边的电面之类的吗?
最近有人收到那边的电面之类的吗?
k*f
7 楼
strtok
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
t*g
8 楼
Do whatever is needed (add/drop regressors, drop obs., scale/transform
regressors, etc) to get "good" regression outcome: as long as referees can
be convinced. Is not this what many empirical people are doing?
not
c
【在 s*******t 的大作中提到】
: 1,some coefficients are significant, but their signs are wrong, or say, not
: consistent with my expectation.
: 2, the variable is not significant when it is put into the model, but with c
: ertain variables included in the model, they become significant.
regressors, etc) to get "good" regression outcome: as long as referees can
be convinced. Is not this what many empirical people are doing?
not
c
【在 s*******t 的大作中提到】
: 1,some coefficients are significant, but their signs are wrong, or say, not
: consistent with my expectation.
: 2, the variable is not significant when it is put into the model, but with c
: ertain variables included in the model, they become significant.
m*1
9 楼
我没收到过
l*a
10 楼
星期天的包子呀。。。。。。。。。。
k*e
11 楼
结合 peek() 不难实现
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
h*0
12 楼
question 2 is perhaps due to omitted variable biases. The paper (published
in a top 3 accounting journal) below has both questions you asked.
Journal of Accounting Research
Vol. 40 No. 1 March 2002
A Re-examination of Disclosure Level and the Expected Cost of Equity Capital
C H R I S T I N E A . BOTOSAN AND MARLENE A . PLUMLEE
in a top 3 accounting journal) below has both questions you asked.
Journal of Accounting Research
Vol. 40 No. 1 March 2002
A Re-examination of Disclosure Level and the Expected Cost of Equity Capital
C H R I S T I N E A . BOTOSAN AND MARLENE A . PLUMLEE
G*y
13 楼
CDM快倒闭了。去年中底下一个分公司关门,上至老总,下至接线员,一个不漏,全员
被雷
被雷
l*a
14 楼
睡着了
错过了公主的讨论
错过了公主的讨论
p*a
15 楼
我的方法是写个
vector split(string)
反正经常要用到的
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
vector
反正经常要用到的
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
h*9
16 楼
As for question 1, see if there are outliers. Also, high correlation (>50%)
among some independent variables may lead to such situations. At last,
re-examine your prior expectations.
among some independent variables may lead to such situations. At last,
re-examine your prior expectations.
T*9
19 楼
分析
遇到(开始读数据,遇到)度完成
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
遇到(开始读数据,遇到)度完成
【在 s*********x 的大作中提到】
: c++高手帮帮忙,有一个文件
: A01 B01 (13,30,50) (20, 40, 60)
: A02 B02 (13,30,50, 100, 200) (20, 40, 60, 105, 206)
: 我需要读出每行中的每一pair, 比如 (13, 20), (30, 40), (50, 60), 可问题是在第
: 三列和第四列中,我们不知道有几个数字,比如第一行中有3个pair,第二行中有4个
: pair.
: 我现在的方法是定义四个string, a, b, c, d
: fstream >> a >> b >> c >> d. then, c = (13,30,50), c++中怎么把这三个数字读出
: 来(比如像perl里的split function)?谢了。
: Update: I solved the problem. Hope it can help others:
G*y
20 楼
光技术好没用,拉关系搞项目最重要。拉到项目,满大街的engineer找几个来干就行了
l*m
21 楼
Re
l*a
24 楼
哦。。。。
还以为已经决定了呢
就决定了吧
一定大家都会很开心
人气旺旺
还以为已经决定了呢
就决定了吧
一定大家都会很开心
人气旺旺
G*y
27 楼
CDM管理混乱,内部有太多政治斗争。有人明明手上有几个月的项目,干的好好的,直
接被雷。还有分公司管理层与总公司管理层不和,于是带项目集体出走,导致分公司集
体关门的。
接被雷。还有分公司管理层与总公司管理层不和,于是带项目集体出走,导致分公司集
体关门的。
l*a
28 楼
不是有活动就分派WB 的吗?
F*g
29 楼
Re~~
l*a
31 楼
是不是要很有创意的活动才有WB 分派?
l*a
33 楼
。。。。。。。
我也没什么创意的说
可以考虑给意见
哈哈哈
我也没什么创意的说
可以考虑给意见
哈哈哈
l*a
35 楼
每星期都有一个活动,就个个星期都人气旺旺啦!
a*9
36 楼
Re
l*a
37 楼
#1 电影,3D 那个,不是很多人看吗?
可以考虑搞个什么讨论呀,观后感呀,比较呀。。。
#2 拍一个小短片比赛?
嗯, 好像不错
哈哈哈
可以考虑搞个什么讨论呀,观后感呀,比较呀。。。
#2 拍一个小短片比赛?
嗯, 好像不错
哈哈哈
l*a
39 楼
手机就可以拍了呀
又不是要什么高清效果
webcam
vidio camera 什么的
大家自己想用什么用什么啦
又不是要什么高清效果
webcam
vidio camera 什么的
大家自己想用什么用什么啦
l*a
40 楼
看来你没看清楚我说的是什么
h*y
41 楼
zan~
l*a
42 楼
意见不错, 可以明天要求双黄包
哈哈哈哈
哈哈哈哈
相关阅读
CH2M Hill 最近有很多entry level 的职位贴出来建议版主做一个本专业的Salary Survey置顶,按照方向,州,学历,工作年龄等求教本专业就业方面的问题是当初出茅庐的30多岁导师的大弟子还是当泰山北斗级的60多岁大牛的关门弟子?请教下考PE的问题何苏: 关于根治黄河的总体设想新年快乐!2011 EWRISeeking for a Senior Geomorphologist没有身份,没有工作经验,找工作到底有多难啊,有经验的同行们麻烦进来说说吧,万分感谢了。代人发一个招聘广告PE exam book for sale【请问】美国生活垃圾填埋场恶臭方面的排放标准?Env. Eng. 专业媒体一个跟大气采样相关的contract-long term hire的工作机会,北卡地区请教大牛们一个visio画图的问题 (转载)复旦环境系副教授自白,八年留学如梦一场 回国才知何为“踏实”免费的Marriott Hotel 四晚酒店入住 只需消费一笔无金额限制大气,气象,水文qq群:108986632,欢迎加入!问个国内薪水问题