분수의 나눗셈1 [자바] 분수의 덧셈, 뺄셈 , 곱셈, 나눗셈을 실행하는 메소드를 작성하고 실행하시오 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 답안코드 더보기 import java.util.Scanner; public class Fraction { int numerator; //분자필드 int denominator; //분모필드 public Fraction(){ this.numerator = 1; //분자1설정 this.denominator = 1; //분모1설정 } public Fraction(int d) { this.numerator = 1; //분자1설정 this.denominator = d; //분모d설정 } public Fraction(int n, int d) { this.numerator = n; //분자n설정 this.denominator = d; //분모d설정 } /.. 2020. 4. 15. 이전 1 다음