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

32번째 줄: 32번째 줄:
     }
     }
}
}
</source>
==Python==
<source lang='python'>
#kcy
k = int(input())
j = k
for i in range (0, k+1):
    print(j-i, end = ' ')
</source>
</source>

2019년 10월 25일 (금) 10:01 판

1 개요

SWEA 1545 거꾸로 출력해 보아요
  • 1씩 빼는 것을 반복하며 출력한다.
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 1-2

2 C++

#include <iostream>
using namespace std;
int main() {
    int n;
    cin >> n;
    for(int i=n; i>=0; i--) {
        cout << i << " ";
    }
}

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);
        }
    }
}

4 Python

#kcy
k = int(input())
j = k

for i in range (0, k+1):
    print(j-i, end = ' ')
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}