목록Programming (3)
행복아울렛
리눅스나 유닉스, 혹은 Mingw, Cygwin등 GNU의 gcc와 make유틸 등을 이용해서 간단한 C++프로그램을 제작하기 위해서 만든 와꾸만들어주는 스크립트입니다. 예전에 제가 올린C++와꾸(Template)와 사용하시면 유용하게 사용하실 수 있습니다. 참고로 C++클래스가 추가되더라도 makefile의 내용을 변경하실 필요없이 그대로 사용하실 수 있게 Makefile에 간단한 트릭을 썼습니다.(이거 뭐 트릭이랄것도 없지만 ^^:) 사용법은 간단하게 쉘에서 $upp 프로젝트명 으로 수행하시면 됩니다. 그러면 디렉토리가 생기고 , 디렉토리 아래에 Makefile과 간단한 C++파일이 생성됩니다. 그 이후 Class를 추가하실 일 있으시면 nc 명령으로 클래스 와꾸를 만들어 주시면 됩니다. $nc 추가..
Awk를 맛보는 간단한 프로그램! $ cat emp.data Beth 4.00 0 Dan 3.75 0 Kathy 4.00 10 Mark 5.00 20 Mary 5.50 22 Susie 4.25 18 $ awk '$3 > 0 { print $1, $2 * $3 }' emp.data Kathy 40 Mark 100 Mary 121 Susie 76.5
How to use variables in programming PERSISTENCE - Use debug code in your program to check critical variales for reasonable values. If the values aren't reasonable, print a warning that tells you to look for improper initialization. - Write code that assumes data isn't persistent. - Develope the habit of initializing all data right before it's used. USING EACH VARIABLE FOR EXACTLY ONE PURPOSE - U..