전체 글

IT, 프로그래밍 관련 지식들을 정리합니다.
Linux

[Ubunto] 한글 입력기 nabi 설치

시스템 - 관리 - 시냅틱 관리자 ↓ 검색- 패키지 이름 - 'nabi' 검색 → 설치 - 적용 프로그램 - 보조프로그램 - 터미널 실행 im-switch -c ← 이렇게 치고 엔터 nabi 설정 후 확인 재부팅

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
Geuny's IT 지식공유