[swexpert] 2029. 몫과 나머지 출력하기 (D1 , java)
Posted by 해랑쓰 블로그 (Haerang's blog)
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(); } }