본문 바로가기
Algorithm/백준 단계별 문제

[백준] 4. while문 - Java 코드

https://www.acmicpc.net/step/2

 

while문 단계

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

www.acmicpc.net

번호별로 함수 구현해두었습니다.

정답제출시에 클래스안에 함수이름을

main(String[] args)

로 변경해서 제출하시면 됩니다.

 

package 기초문법;

import java.util.Scanner;

public class _04while {

	public static void main(String[] args) {
		// TODO Auto-generated constructor stub
		ex10952();
	}
    public static void ex10952() {
		Scanner sc = new Scanner(System.in);
		int n=-1;
		int[] a = new int[100];
		int[] b = new int[100];
		do{
			n++;
			a[n]=sc.nextInt();
			b[n]=sc.nextInt();
		}while(a[n]!=0 || a[n]!=0);
        	
        for(int i=0; i<n; i++) {
            System.out.printf("%d\n",a[i]+b[i]);	
        }
    }
    
    public static void ex1110() {
		Scanner sc = new Scanner(System.in);
		int a=sc.nextInt();
		int count=0,n=a,tmp;
		
		do{
			tmp = n%10 + n/10;
			n = (n%10)*10 + (tmp%10); 
			count++;
		}while(n!=a);

	    System.out.printf("%d\n",count);	
    
    }
}