$O(...)$
랜덤으로 출력한다.
rand() 함수를 쓰는 경우 약간의 시간지연이 필요하다.
#include<cstdio> #include<ctime> #include<cstdlib> int r; int main() { srand(time(0)); for (int i = 0; i < rand(); i++) r = rand() & 1; puts(r ? "Korea" : "Yonsei"); return 0; }
이제 주소 값을 이용하는 방법은 컴파일러 에러로 인해 안되는 듯 하다.
댓글 없음 :
댓글 쓰기