Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

데블스캠프2006/월요일/함수/문제풀이/주소영

From ZeroWiki

주소영

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

int asa();

int main()
{
	srand((unsigned)time(NULL));
	cout<< asa();

	return 0;
}
int asa()
{

	return rand()%6+1;
}