[백준] 10952번, 10951번, 1110번/ Java, Python

Jini·2021년 2월 6일
0

백준

목록 보기
10/226

Baekjoon Online Judge

algorithm practice

단계별 문제풀기

4. While문

Java / Python

1. A + B - 5

10952번

0 0이 들어올 때까지 A+B를 출력하는 문제

  • Java
import java.util.Scanner;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
        
		while(true){
			int a = sc.nextInt();
			int b = sc.nextInt();
			if(a == 0 && b == 0){
				break;
			}
			System.out.println(a+b);  
		}
		sc.close();
	}
}

  • Python
while(True):
    a, b = map(int,input().split())
    if a == 0 and b ==0:
        break
    print(a+b)




2. A + B - 4

10951번

입력이 끝날 때까지 A+B를 출력하는 문제. EOF에 대해 알아 보기

EOF: end of file / 파일끝 => 컴퓨팅에서, 파일 끝은 데이터 소스로부터 더 이상 읽을 수 있는 데이터가 없음을 나타낸다.

  • Java
import java.util.Scanner;
 
public class Main {
	public static void main(String args[]){
		
		Scanner sc = new Scanner(System.in);
			
		while(sc.hasNextInt()){
			int a = sc.nextInt();
			int b = sc.nextInt();
			System.out.println(a+b);
		}	
		sc.close();
	}
}

Java의 경우 hasNextInt()를 이용했습니다. hasNextInt()의 경우 입력값이 정수일경우 true를 반환하며, 정수가 아닐경우 바로 예외를 던지며 더이상의 입력을 받지 않고 hasNextInt()에서 false를 반환하면서 반복문이 종료됩니다!


  • Python

방법 1

while True:
    try:
        a, b = map(int, input().split())
        print(a+b)
    except:
        break

방법 2

try:
    while True:
        a,b = map(int, input().split())
        print(a+b)
except:
    exit()

파이썬의 경우 try/except를 이용하여 예외 처리를 했습니다.
살짝 다른 방식으로 2가지 방법으로 코드를 작성해보았습니다..!





3. 더하기 사이클

1110번

원래 수로 돌아올 때까지 연산을 반복하는 문제

  • Java
import java.util.Scanner;
 
public class Main {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();
		int count = 0;    
		int N = num;	
		while(true){
			count = count + 1;
			N = ( (N%10)*10 ) + ( ((N/10) + (N%10))%10 );
			if(num == N){
				break;
			}
		}	
		System.out.println(count);
		sc.close();
	}
}

  • Python
N = num = int(input())
count = 0

while True:
    ten = N // 10
    one = N % 10
    total = ten + one
    count = count + 1
    N = int(str(N % 10) + str(total % 10))
    if(num == N):
        break
        
print(count)




오늘은 While문을 이용한 예제들을 풀어보았습니다!
while문의 경우, if문을 통해 조건을 정해서, break하는 방식으로 문제를 풀어보았습니다!

profile
병아리 개발자 https://jules-jc.tistory.com/

0개의 댓글