IT창의공학 5가지 변수 크기순 정렬IT창의공학 5가지 변수 크기순 정렬

Posted at 2013. 5. 6. 16:08 | Posted in 1학기/IT창의공학

<html>

<body>

<script>

var a, b, c, d ,e, temp;

a=parseInt(prompt("첫번째 수 입력."));

b=parseInt(prompt("두번째 수 입력."));

c=parseInt(prompt("세번째 수 입력."));

d=parseInt(prompt("네번째 수 입력."));

e=parseInt(prompt("다섯번째 수 입력."));

if (a<b)

{

temp = a

a = b

b = temp

}

if (a<c)

{

temp = a

a = c

c = temp

}

if (a<d)

{

temp = a

a = d

d = temp

}

if (a<e)

{

temp = a

a = e

e = temp

}

if (b<c)

{

temp = b

b = c

c = temp

}

if (b<d)

{

temp = b

b = d

d = temp

}

if (b<e)

{

temp = b

b = e

e = temp

}

if (c<d)

{

temp = c

c = d

d = temp

}

if(c<e)

{

temp = c

c = e

e = temp

}

if(d<e)

{

temp = d

d = e

e = temp

}

document.write(a + "<br>");

document.write(b + "<br>");

document.write(c + "<br>");

document.write(d + "<br>");

document.write(e + "<br>");

</script>

</body>

</html>

'1학기 > IT창의공학' 카테고리의 다른 글

선택논리  (0) 2013.05.09
산술연산자  (0) 2013.05.09
프로그래밍 언어 2  (0) 2013.04.09
프로그래밍 언어  (0) 2013.04.09
순서도  (0) 2013.04.09
//