Best reason why i need a personal loan to tell the bank?
I need a personal loan , but what is the best reason to tell the bank. The bank wont approve my reason im sure, but i need it. its something i need not a want. When banks ask why do you need the loan, what is the best thing to say?
I need a personal loan of $5000. 00 but my credit is bad, and I don’t have enough debt to do debt consolidation?
I want to combine my debt but I don’t have enough debt to qualify for a debt consolidation program. please help
I need a description of what an online payday loan is. It needs to describe “online payday loans”. Thank you!
I’m writing a guide about this, so links to anything about Online Payday Loans would be helpful. I can find information on Payday Loans, but not Online Payday Loans. Any links would be appreciated. Thanks!
College experts i need info on student loans -bad credit i had not horrible but a bad record throughhighschool
somone plz help
I need to find out more a getting a bad credit personal loan for my daughter?
Do debt consolidations loans give you extra money if you need it?
I am a renter and would like to consolidate my loans but I need some car repairs done. is there anyway to do this?
im buying a motorcycle and have no credit history, i need to take out a personal loan will the bank approve?
I want to get a bike like very soon. This weekend actually. I’ve checked out the bike and am ready to buy it.
the problem is that i need a loan. I have no credit history,
Will the bank approve my $3,000 personal loan? or what should i do?
soo what should i do?
where can i get small debt consolidation, my credit is really bad lower than 520. . . so i need help!!!?
i tried to consolidate but my debt is too small for them —less than 5000, and i tried to get a personal loan to cover them and consolidate but my credit is way too low to get approve i’m stuck. i’m trying my best to fix my credit but its hard when all them are due now and i got none to cover all of them at the same time.
Need Help with Java: Java Applet Calculate Button ?
Purpose of the assignment: Create a mortgage calculator that allows the user to input the loan principal and then select from a combo-box that has 3 loan types for the user to choose from (7yrs@5.35%, 15yrs@5.50%, 30yrs@5.75%)
Problem, I have my program compiling and running. And I thought it was calculating everything right. But I noticed that if the user clicks the calculate button more than once, it slightly changes the results. Even if the user were to click the clear button, the program doesn’t fully clear because it still remembers what the previous results were but just doesn’t display them. In order for me to fully clear the program out I need to exit the program and re-run it.
So that leads to my first question, Why is my program calculating more than once and how can I get it to stop? What would be a cause of that?
Below is my actionPerformed method as well as 1 loan calculation method. There are a total of 3 loan calculation methods that are identical (other than the interest rate and loan term).
————-
public void actionPerformed(ActionEvent e)
{
Object source = e.getSource();
buff = new StringBuffer();
if (source == calculate)
{
int selection = selections.getSelectedIndex();
if (selection == 0)
{
Double data = (Double)calculateLoanOne();
String sourceInput = data.toString();
displayMonthlyPayment.setText(sourceInput);
txtArea.setText(buff.toString());
}
else if (selection == 1)
{
Double data = (Double)calculateLoanTwo();
String sourceInput = data.toString();
displayMonthlyPayment.setText(sourceInput);
txtArea.setText(buff.toString());
}
else if (selection == 2)
{
Double data = (Double)calculateLoanThree();
String sourceInput = data.toString();
displayMonthlyPayment.setText(sourceInput);
txtArea.setText(buff.toString());
}
}
else if (source == clearButton)
{
enterPrincipal.setText(”");
displayMonthlyPayment.setText(”");
selections.setSelectedIndex(0);
txtArea.setText(”");
}
else if (source == exitButton)
{
System.exit(1);
}
}
private static boolean validate(JTextField in)
{
String inText = in.getText();
char[] charInput = inText.toCharArray();
for(int i = 0; i < charInput.length; i++)
{
int asciiVal = (int)charInput[i];
if((asciiVal >= 48 && asciiVal <= 57) || asciiVal == 46)
;
else
JOptionPane.showMessageDialog(null, "Invalid Character, Please Use Numeric Values Only");
return false;
}
return true;
}
public double calculateLoanOne()
{
double periodInterest;
int totalPayments;
double loanInterest;
double interestPaid;
int l = 0;
double balance;
double payment;
String sourceInput1 = enterPrincipal.getText();
principalAmount = Double.parseDouble(sourceInput1);
double principalAmount2 = principalAmount;
DecimalFormat twoDForm = new DecimalFormat("#.##");
String formatting = twoDForm.format(finalPayment);
balance = principalAmount2 - finalPayment;
totalPayments = 84;
loanInterest = 0.0535;
periodInterest = loanInterest / 12;
interestPaid = balance * periodInterest;
finalPayment = principalAmount * (periodInterest * Math.pow((1 + periodInterest), totalPayments)) / ((Math.pow((1 + periodInterest), totalPayments) - 1));
for (int i = 0; i <= totalPayments; i++)
{
principalAmount2 = Double.valueOf(formatting);
while (balance > 0)
{
if (l >= 0)
buff.append(” ” + String.format(”%.2f”, finalPayment) + “\t\t ” + String.format(”%.2f”, interestPaid) + “\t\t ” + String.format(”%.2f”, balance) + “\n”);
interestPaid = balance * periodInterest;
payment = finalPayment – interestPaid;
balance = balance – payment;
}
}
return Double.valueOf(formatting);
}
Okay, thanks so much
