본문 바로가기

전체글

(354)
객체 , 클래스 // object, class See the Pen zYGRKxr by MoonSeonhyeon (@Seonhyeon) on CodePen. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 package myapp; public class Ex1 { public static void main(String[] args) { // 클래스 만들기 -> 클래스 생성 ->클래스 사용 (변수, 메소드) //SUN에서 잘 만들어놓은 클래스들 갖다 사용. 아래에는 String 클래스(SUN 회사에서 제공) 생성 //레퍼런스 변수 : s는 만들어진 객체를 가르키고 있는 변수 String s = new String("하하하하하하하하하"); //String은 문자열을 객체화한 클래스 //레퍼런스 변수.변수..
함수 function / isNaN, parseInt 더하기 See the Pen xxGYwQZ by MoonSeonhyeon (@Seonhyeon) on CodePen. See the Pen XWbZmoW by MoonSeonhyeon (@Seonhyeon) on CodePen. 구구단 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 Document function gugudan(n) { m = parseInt(n); if(isNaN(m)||m9){ alert("잘못 입력하셨습니다."); return;//밑에 코드가 실행되지 않고 함수를 빠져나감 break랑 비슷. } for (i=1;ics
색깔 랜덤 구구단 //Multiplication table(color random) See the Pen xxGpYJB by MoonSeonhyeon (@Seonhyeon) on CodePen.
break ,continue See the Pen qBdpKPg by MoonSeonhyeon (@Seonhyeon) on CodePen. See the Pen rNVpKpK by MoonSeonhyeon (@Seonhyeon) on CodePen.
while문 으로 0에서 n까지 합/do-while문 while문 으로 0에서 n까지 합 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 while문으로 0에서 n까지 합 http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs do-while문 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 Document do-while문 //1에서 10까..
반복문 for문, 중첩 (예시 구구단 만들고 css로 꾸미기까지~!) See the Pen MWwrXvr by MoonSeonhyeon (@Seonhyeon) on CodePen. See the Pen JjdMZJw by MoonSeonhyeon (@Seonhyeon) on CodePen. 반복문 중첩 See the Pen rNVpKpK by MoonSeonhyeon (@Seonhyeon) on CodePen. 구구단 만들고 css로 꾸미기 까지 See the Pen NWqXzev by MoonSeonhyeon (@Seonhyeon) on CodePen.
switch문 case문의 값은 상수(리터럴)만 가능 예) case 1 : casee 2.7 : case "Seoul" : case true : case 2+3 : //계산되어서 case 5 : 랑 동일 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 Document switch문 var price = 0; var coffee = prompt("무슨 커피 드릴까요?","에스프레소"); switch (coffee) { case "에스프레소": // price = 2000; //break;..
제어문 - 선택문 - if, else if, else (+예시 학점 매기기, 월 계절 맞추기) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 Document 제어문 -> 선택문 -> if, else if, else gender = "남자"; //if문 ()안에는 반드시 true, false값이 들어간다. if(gender=="남자"){ document.writeln("당신은 남자입니다."); }else{ document.writeln("당신은 여자입니다."); } document.writeln(" "); //제어문 전체에 적용 : // 실행되는 코드에 {}중괄호가 없으면 밑에 또는 옆에 있는 한줄만 적용. //실행되는 코드가 두줄 ..