codeup-1071 0 입력될 때까지 무한 출력하기1 Author: Slay Date: May 7, 2023 1:04:41 Category: codeup Qcodeup 1071 C code123456789101112131415161718#include <stdio.h>int main(void){ int n; here: scanf("%d", &n); if(n != 0) { printf("%d\n",n); goto here; } return 0;} Author: Slay Permalink: http://sean-baek.github.io/2023/05/07/codeup-1071/ License: Copyright (c) 2021 CC-BY-NC-4.0 LICENSE Slogan: Do you believe in DESTINY? Tag(s): back · home codeup-1072 정수 입력받아 계속 출력하기 baekjoon-2444 별 찍기 - 7