새소식

Algorithm/Acmicpc.net (백준)

[C언어] 백준 : 기찍 N (2742번)

  • -
#include <stdio.h>
int main()
{
    int n;
    scanf("%d", &n);
    for(int i = n; i > 0; i--){
        printf("%d\n", i);
    }
}
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.