随机数的产生

#include "iostream"
#include "time.h"
using namespace std;  
void main()

 int count=0; 
 srand((unsigned)time(NULL)); 
 for (int i=0;i <10;i++)
 { 
  count++; 
  cout << "No " <<count << "= " <<rand() << " "; 
  if (!(count%5))
   cout <<endl; 
 } 
}

posted @ 2011-09-02 09:37  qijinbiao1  阅读(220)  评论(0编辑  收藏  举报