This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.martinpack; | |
import java.text.NumberFormat; | |
import java.util.Scanner; | |
public class Loan_Calculator { | |
public static void main(String[] args) { | |
final byte MONTHS_IN_YEAR = 12; | |
final byte PERCENT = 100; |