evt.srcElement.blur(); } function clickshow(num){ menu = document.getElementById("block"+num); if( menu != null && typeof menu != "undefined" ) { if (menu.style.display=="block"){ menu.style.display="none"; //닫고 } else{ menu.style.display="block";//하위메뉴를 펼친다. } } }

'srand'에 해당되는 글 1건

  1. 2007/12/18 Random 숫자 얻기

Random 숫자 얻기

Random 숫자 얻기 C++ 2007/12/18 00:51

 FILETIME ft;
 GetSystemTimeAsFileTime(&ft);
 static DWORD dwVal = 0x21;
 DWORD dwSeed = (dwVal++ << 0x18) | (ft.dwLowDateTime & 0x00ffff00) | dwVal++ & 0x000000ff;
 srand(dwSeed);

 int iRandom = rand()%10+1;

Posted by 파란크리스마스
TAG , ,
1 
하단 사이드바 열기

BLOG main image