534자루의 연필을 30명의 학생들에게 똑같은 개수로 나누어 줄때 학생당 몇개를 가질수 있고, 최종적으로 몇개가 남는지 구하는 코드 1대신 알맞은 코드를 작성하시오.
package chapter20230802;
public class Test11 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int pencils = 534;
int students = 30;
// 학생 한명이 가지는 연필 수
int pencilsPerStuden = pencils / students;
System.out.println(pencilsPerStuden);
// 남은 연필수
int pencilsLeft = pencils % students;
System.out.println(pencilsLeft);
}
}