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>