获得随机数

#include <iostream>
#include <time.h>
#include <stdlib.h>
using namespace std;

int main()
{
    int posX,posY;
    srand((unsigned)time(NULL));
	for(int i = 0 ; i < 9; i++)//通过循环得到size个不同的随机数对
	{
		posX = (rand()%9) ;
		posY = (rand()%9);
		cout << posX << " " << posY <<endl;
	}
    return 0;
}

posted @ 2011-09-06 14:38  java简单例子  阅读(122)  评论(0编辑  收藏  举报