예제
<script>
/*
[문제]
자바스크립트 출력문을 사용해 출력하시오.
공백은 3칸씩 적용되어 있습니다.
*/
/*
[출력예시]
20 40 60
*/
document.write(20 + " " + 40 + " " + 60);
</script>
HTML
복사