기억저장소

기억저장소

728x90
반응형

분류 전체보기 261

[템플릿] 등 웹사이트 만들 때 좋은 자료들

무료 홈페이지 템플릿http://jjangfree.tistory.com/79 반응형 웹 http://www.onextrapixel.com/2011/09/12/create-a-responsive-web-design-template/ 이클립스에서 지원하지 않는 jsp html5 템플릿 추가를 해보자http://blog.naver.com/kyh0687?Redirect=Log&logNo=150161912087 html5 템플릿 만들어주는 사이트http://demun.tistory.com/2043http://www.initializr.com/ BootStrap을 이용한 화면구성http://blog.naver.com/youzang7?Redirect=Log&logNo=70145745401부트스트랩 사용법http://..

Web/JSP 2013.03.25

Java에서 system.out / data type / method / scope rule 특징

자바에서의 기본적인 출력 방법과 데이터 타입의 특징에 대해 정리해본다. 자바 초보도 이해할 수 있는 문장으로 구성해보자. 1. System.out.println 이해하기 자바에서는 System.out.println을 통해 다양한 데이터를 화면에 출력할 수 있다. 기본 데이터 타입부터 문자열까지, 여러 방법으로 출력하는 것이 가능하다. class SystemOutPrintln { public static void main(String[] args) { System.out.println(7); System.out.println(3.15); System.out.println("3+5=" + 8); System.out.println(3.15 + "는 실수입니다."); System.out.println("3+5"..

728x90
반응형