전체 글 (127) 썸네일형 리스트형 노트 사이트 notion www.notion.so/ko 웹사이트 netlify 사이트에서 무료로 만드는 방법 1. 구글에 'html free template' 입력 후 아무 사이트 들어가서 다운로드 한다. 2. 업로드 위해서 www.netlify.com 접속한다 Netlify: Develop & deploy the best web experiences in record time A powerful serverless platform with an intuitive git-based workflow. Automated deployments, shareable previews, and much more. Get started for free! www.netlify.com 3. 다운받은 압축 푼 폴더를 드래그 하면 4. 사이트 주소가 생긴다 - 사이트 주소를 바꾸고 싶으면 Site settings 선택 하고 Chan.. [Java] 생성자 package org.opentutorials.javatutorials.constructor; class Calculator { int left, right; public Calculator(int left, int right) { this.left = left; this.right = right; } public void sum() { System.out.println(this.left + this.right); } public void avg() { System.out.println((this.left + this.right)/2); } } public class CalculatorDemo1 { public static void main(String[] args) { Calculator c1 = ne.. 이전 1 ··· 33 34 35 36 37 38 39 ··· 43 다음