Today NTTData's customer is about go to our company. The NTTData is one of shareholders. As a matter of fact, it
is the biggest shareholder.
This morning I have to finish modifing the source of the Apached Module comDataServer. This afternoon, I have to
finish the test plan. Tommorrow, I have to test that module revised. God! The larger GUI testing on SI-net is waiting
for me.
This year, every one in our team will get about one million RMB for our corporation. This estimate can not precise,
it is not a great discrimination.
Oh, today our corporation will hold a security scrutiny.
There is a get random function. It is convenienct.
#include <time.h>
#include <stdlib.h>
int getRand(float m) {
int ret = 0;
srand((int)time(0));
while (true) {
ret = (int) (m * rand() / (RAND_MAX + 1.0));
if ((ret >= 0) && (ret <=(int)m))
return ret;
}
}
2009 March 11th Wednesday (三月 十一日 水曜日)
最新推荐文章于 2025-02-12 10:03:58 发布
今天,NTTData的客户将访问公司,作为最大股东之一,我们需要展示最佳状态。作者上午需要完成Apache Module comDataServer源代码的修改工作,下午则要制定测试计划,并预计明天开始进行模块测试。此外,还提到了一个简单的随机数生成函数。
1335

被折叠的 条评论
为什么被折叠?



