/*测试程序2:
创建N个随机线程的随机实验.
命令行输入参数:
test threadNo runSecs
*/
#include <windows.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define N 5
#define Type float
static int runFlag=TRUE;
DWORD WINAPI threadWork(LPVOID threadNo);
int parseArgToInt(char* inNumChar);
Type eRandom(int upLimit);