πŸ•Έ Algorithm/πŸ•Έ λ°±μ€€ BaekJoon

[λ°±μ€€][java][10951][A+B - 4]

뉴이 NUEY 2023. 10. 9. 23:59
λ°˜μ‘ν˜•

 

import java.util.Scanner;

public class Main {
	// 10951	A+B - 4
	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);
		}
	}
}

μ›λž˜ while(true)둜 ν•΄μ„œ 닡을 μ œμΆœν–ˆλ”λ‹ˆ λŸ°νƒ€μž„μ—λŸ¬κ°€ λ‚˜λ”κ΅°μš”.

 

여기에 μ•„μ˜ˆ 닡이 μ ν˜€μžˆμ–΄μ„œ κ³ μ³€μŠ΅λ‹ˆλ‹€.

Scanner class의 hasNextInt()ν•¨μˆ˜λ₯Ό μ‚¬μš©ν•˜λ©΄ λ˜λŠ” κ±°μ˜€μ–΄μ„œ 고쳐 λƒˆλ”λ‹ˆ λ§žμ·„μŠ΅λ‹ˆλ‹€.

 

 

 

 

 

 

 


 

 

 

 

μ½”λ“œλ₯Ό 짜면 지수둝 Document의 μ€‘μš”μ„±μ„ λŠλΌλ„€μš”. 이걸 μ–΄λ–»κ²Œ ν•΄κ²°ν•΄μ•Ό ν• κΉŒ..고민될 λ•Œ λ‚΄κ°€ μ•„λŠ” ν•¨μˆ˜()둜 ν•΄κ²°ν•˜λ €κ³  ν•˜κΈ°λ³΄λ‹¨ λͺ°λΌμ„œ μ•ˆ μ“°λŠ” ν•¨μˆ˜κ°€ JRE에 거의 λ“€μ–΄μžˆλŠ” 게 λŒ€λΆ€λΆ„μ΄λΌ

 

 

 

λ°˜μ‘ν˜•