C++

C++

배열의 디폴트 값은 쓰레기 값

위의 실행 결과로, C++에서 초기화하지 않은 배열은 쓰레기값이 들어간다는 것을 알 수 있습니다.

C++

난수 발생 중복되지 않도록 구현(Visual Studio 2008)

소스코드 #include "stdafx.h" #include #include #include int _tmain(int argc, _TCHAR* argv[]) { srand((unsigned)time(NULL)); int array[10]; int a = 0; int tmp = 0; int count = 0; while (a < 10) { if (a == 0) { array[0] = rand() % 10; a++; } else { tmp = rand() % 10; count = 0; for (int i = 0; i < 10 ; i++) { if (array[i] == tmp) { count++; } } if (count == 0) { array[a] = tmp; a++; } } } for (int i =..

Geuny
'C++' 카테고리의 글 목록