'Projects' 카테고리의 글 목록 (6 Page) — Archive

Projects

Projects

[Digital Logic Design] The vote for pros and cons Logic (찬반투표 논리) (작성중)

The vote Logic (Pros & Cons) 찬반투표 논리 Description - 투표자 3명 중 2명 이상이 찬성할 경우 찬성값을 출력하는 회로 - True값(1)은 찬성을 의미한다. - False값(0)은 반대를 의미한다. - Parameter A, B, C는 각각의 투표자를 의미하며 Z는 결과값을 의미한다. Truth Table (진리표) (Latex로 구현하기) * 진리표란, 입력에 대한 모든 경우에 따른 결과값을 표시한 표를 말한다. Expression Expression 1. Rough (Not optimized) \(Z = A'BC + AB'C + ABC' + ABC\) 여기서, A'은 A에 NOT 연산을 수행한 값을 의미한다. 즉, A' = NOT(A) - 진리표 상에서, Z값을 ..

Projects

[IT기기] Dell XPS 해외 직구법 및 사후 관리법 (작성중)

1. 캐시백 사이트 접속 - 이베이츠, 랄프루걸 2. 오픈마켓 사이트를 캐시백 사이트를 경유하여 접속 3. 제품 주문 - 아마존: 기프트 카드 선불구입 (인터넷 오픈마켓에서 1$ 당 1,080원 선) - 배송대행지 경유: 몰테일 (우리비자카드 11달러 할인 이벤트 ~12.31) 4. 제품 점검 - 육안점검, 고주파 테스트, 발열 체킹 - 시리얼번호의 날짜와 구입날짜 비교 (1년 이상 차이가 날 경우 영수증 사본 첨부하여 문의) - 델 어시스턴트 프로그램 - SSD 속도측정 (크리스탈 디스크마크) - Fire Strike (총 7781점 / 그래픽 스코어 8753점 / 피직스 스코어 13289점 / 컴바인드 스코어 3170점) - HW Monitor로 실시간 온도측정 - 불량화소 테스트 - 배터리 웨어율 ..

Projects

[C++] C++ Primer Plus 6th Programming Exercises (Chapter 3)

Programming Exercises (C++ Primer Plus 6th, pp.129-130.) 1. Write a short program that asks for your height in integer inches and then converts your height to feet and inches. Have the program use the underscore character to indicate where to type the response. Also use a const symbolic constant to represent the conversion factor. 키를 정수형 인치 단위로 묻고 그 값을 피트와 인치 단위로 변환하는 짧은 프로그램을 작성하라. 입력해야 할 곳을 사용..

Projects

[C++] C++ Primer Plus 6th Programming Exercises (Chapter 2)

Programming Exercises (C++ Primer Plus 6th, pp.69-70.) 1. Write a C++ program that displays your name and address (or if you value your privacy,a fictitious name and address.) 이름과 주소를 출력하는 C++ 프로그램을 작성하라. (개인 정보를 소중히 생각한다면, 허구의 이름과 주소를 이용하라.) Answer. #include using namespace std; int main(){ cout

Projects

[C++] C++ Primer Plus 6th Chapter Review (Chapter 3)

Chapter Review (C++ Primer Plus 6th, pp.126-130.) 1. Why does C++ have more than one integer type? C++는 왜 여러 개의 정수형을 제공하는가? Answer. 시스템의 메모리를 효율적으로 사용하기 위한 수단으로써 여러가지 정수형을 이용할 수 있다. 특히, int type은 대부분의 시스템에서 다른 data type보다 빠르고 원활하게 처리된다. 2. Declare variables matching the following descriptions: 다음 서술과 일치하는 변수들을 선언하라: a. A short integer with the value 80 값이 80인 short형 정수 b. An unsigned int integer..

Projects

[C++] C++ Primer Plus 6th Chapter Review (Chapter 2)

Chapter Review (C++ Primer Plus 6th, pp.66-67.) 1. What are the modules of C++ programs called? C++ 프로그램을 구성하는 모듈을 무엇이라 부르는가? Answer. 함수 2. What does the following preprocessor directive do? 다음과 같은 전처리 지사자가 하는 역할은 무엇인가? #include Answer. "iostream" 헤더 파일을 현재 작성중인 프로그램 파일에 포함시킨다. 3. What does the following statement do? 다음과 같은 구문이 하는 역할은 무엇인가? using namespace std; Answer. 위 구문이 정의된 범위내에서, 이름공간 "st..

lww7438
'Projects' 카테고리의 글 목록 (6 Page)