영원히 흘러가는 강
코드업 100제 (1071~1075) 본문
728x90
1071. 정수가 순서대로 입력된다.
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(true) {
int x=sc.nextInt();
if(x==0)
break;
System.out.println(x);
}
}}
1072. n개의 입력된 정수를 순서대로 출력해보자.
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x=sc.nextInt();
for(int i=0;i<x;i++)
System.out.println(i+1);
}}
1073 0이 아니면 입력된 정수를 출력하고, 0이 입력되면 출력을 중단해보자. (for 문 사용)
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
for(;;){
int x=sc.nextInt();
if(x==0)
break;
System.out.println(x);
}
}}
1074 정수(1 ~ 100) 1개가 입력되었을 때 카운트다운을 출력해보자.
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x=sc.nextInt();
if(x<101) {
for(;x>0;x--) {
System.out.println(x);
}
}
else
System.out.println("101이상");
}}
1075. 정수(1 ~ 100) 1개가 입력되었을 때 카운트다운을 출력해보자.
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x=sc.nextInt();
if(x<101) {
for(;x>0;x--) {
System.out.println(x-1);
}
}
else
System.out.println("101이상");
}}
728x90
'알고리즘' 카테고리의 다른 글
코드업 100제 (1081~1085) (0) | 2020.09.24 |
---|---|
코드업 100제 (1076~1080) (0) | 2020.09.23 |
코드업 100제(1066~1070) (0) | 2020.09.23 |
코드업 100제 (1061~1065) (0) | 2020.09.22 |
코드업 100제 (1056~1060) (0) | 2020.09.22 |
Comments