![]() |
#2
水云逸2009-10-07 21:42
|
#include <iostream>
#include <process.h>
#include "winbase.h"//加上这个包含文件后报出错误825条,这是为什么,难道标准头文件也有错误吗?我
using namespace std;
int main(){
srand(time(NULL));//本来想在这里添加参数为lpSystemTime.
const int l = rand();
cout<<l;
system("PAUSE");
}