[swexpert] 2029. 몫과 나머지 출력하기 (D1 , java)

728x90
반응형
import java.util.Scanner;

public class Solution {

	public static void main(String[] args) {
		
		Scanner sc=new Scanner(System.in);
		int t=sc.nextInt();
		for (int i = 0; i < t; i++) {
			int a=sc.nextInt();
			int b=sc.nextInt();
			System.out.printf("#%d %d %d\n",i+1,a/b,a%b);
		}
		
		sc.close();
	}
	
	
}
	

 

 

 

728x90
반응형
TAGS.

Comments