Skip to content

Instantly share code, notes, and snippets.

View martincald's full-sized avatar

Martin Calderon martincald

View GitHub Profile
@martincald
martincald / Loan_Calculator.java
Last active October 7, 2025 13:33
A simple loan calculator in java
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;