• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Java applet program (together with its html test file) to calculate loan payments.

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi, I need help with a new assignment. I have to write a Java applet program (together with its html test file) to calculate loan payments. The user will provide the interest rate, the number of years, and loan amount

this is what I have so far



if anyone can help me that would be great. thank you
 
Bartender
Posts: 4179
22
IntelliJ IDE Python Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

mike saggese wrote:hi, I need help with a new assignment. I have to write a Java applet program (together with its html test file) to calculate loan payments. The user will provide the interest rate, the number of years, and loan amount

this is what I have so far

if anyone can help me that would be great. thank you



Do you have a question?
 
mike saggese
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Steve Luke wrote:

mike saggese wrote:hi, I need help with a new assignment. I have to write a Java applet program (together with its html test file) to calculate loan payments. The user will provide the interest rate, the number of years, and loan amount

this is what I have so far

if anyone can help me that would be great. thank you



Do you have a question?



yes actually. I was trying to write a java loan calculator applet and I'm having some trouble. here's my code


tried
At line 72 the error is that it cannot find symbol. its where the Loan loan = new Loan(interest, year, loanAmount); is. I've tried adding public class loan and that didn't work. I've tried the no class found def exception and that didn't work either. I also know that Nothing in the above code indicates that I actually have a Loan class. Is this a different package and I'm just missing an import. Any help would be great. thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic