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

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

From ZeroWiki
Revision as of 05:29, 7 February 2021 by imported>Unknown
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

주소영

#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;
}