프로그래밍/코딩16 비트단위 연산자. &, |, ^, ~, <<, >> 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970void Study013::ChapterContents( void ){ printf_s("\tStudy013의 내용\n"); // & AND연산 : 하나이상 0 이면 0 둘다 1이면 1 // 0 & 0 return 0; // 0 & 1 return 0; // 1 & 0 return 0; // 1 & 1 return 1; int num1 = 15; // 00000000 00000000 00000000 00001111 int num2 = 20; // 00000000 000000.. 2016. 4. 11. templet 기반의 Node 만들어 보기 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748// TemplateNode.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.//#include "stdafx.h"#include "Node.h"#include "MyData.h" using namespace std; int main(){ //숫자 테스트 Node num; num.Push(1); num.Push(10); num.Push(100); cout 2016. 4. 4. 랜덤 난수 생성 함수 와 메르센 트위스터 난수 생성 코드12345 srand(GetTickCount()); for (int i = 0; i 2016. 1. 28. try -> throw -> cahth try -> throw -> cahth 2015. 7. 4. 이전 1 2 3 4 다음