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;
}
}