"SWEA 1545 거꾸로 출력해 보아요"의 두 판 사이의 차이

(새 문서: ==개요== ;{{subst:PAGENAME}} * {{SWEA 헤더}} {{SWEA 난이도 1-2}} |} ==C++== <source lang='cpp'> </source> ==Java== <source lang='java'> </source>)
 
13번째 줄: 13번째 줄:
==Java==
==Java==
<source lang='java'>
<source lang='java'>
import java.util.Scanner;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for( int i=n; i>=0; i--) {
              System.out.format("%d ", i);
        }
    }
}
</source>
</source>

2018년 9월 6일 (목) 22:55 판

1 개요

SWEA 1545 거꾸로 출력해 보아요
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 1-2

2 C++

3 Java

import java.util.Scanner;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for( int i=n; i>=0; i--) {
               System.out.format("%d ", i);
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}