Interest Calculator

denominator7 :

Problem with my code for calculator - output values not correct Here is my code, any response would be appreciated.

import java.util.Scanner;

public class Savings {

    public static void main(String[] args) {

        Scanner console = new Scanner(System.in);

//ask for initial amount
        System.out.print("What is the initial savings amount? ");

        double initialAmount = console.nextDouble();

// ask for number of months
        System.out.print("What is the number of months to save? ");

        int months = console.nextInt();

//ask for interest rate
        System.out.print("What is the annual interest rate? ");

        double interestRate = console.nextDouble();

//calculate total



        double monthlyInterest = ((interestRate/100)*(1/12));

        double number1 = (monthlyInterest + 1);

        double number2 = Math.pow(number1, months);

        double total = (initialAmount*number2);


        System.out.println("$" + initialAmount + ", saved for " + months + " months at " + interestRate + "% will be valued at $" + total);

        console.close();
    }
}

final value ends up being the same value as initial