728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <stdio.h> int main() { int i; reload: scanf("%d", &i); if (i == 0) goto finish; printf("%d\n", i); if (i != 0) goto reload; finish: printf("0\n"); return 0; } | cs |
728x90
'Study > code up' 카테고리의 다른 글
[codeup] 1073 : [기초-반복실행구조] 0 입력될 때까지 무한 출력하기2 (0) | 2019.07.23 |
---|---|
[codeup] 1072 : [기초-반복실행구조] 정수 입력받아 계속 출력하기 (0) | 2019.07.23 |
[codeup] 1070 : [기초-조건/선택실행구조] 달 입력 받아 계절 출력하기 (0) | 2019.07.23 |
[codeup] 1069 : [기초-조건/선택실행구조] 평가 입력받아 다르게 출력하기 (0) | 2019.07.23 |
[codeup] 1068 : [기초-조건/선택실행구조] 정수 한 개 입력받아 평가 출력하기 (0) | 2019.07.23 |