• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Did I do this right? (Interest calculator)

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There aren't any errors coming up, and the math part runs fine, I just want to make sure that this does what it's supposed to. I feel like I'm missing something.

What do you think? These were the instructions:
1. Ask the user for initial principal amount and annual percentage rate.
2. Program will go through the for-loop but instead of displaying in the screen, write to a text file.
3. Program will then open the same text file, read the data and append to the outputTextArea variable and then JOption display on the screen inside a JOptionPane message dialog.


 
Sheriff
Posts: 28394
100
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Step 3 starts out by saying

Program will then open the same text file, read the data and append to the outputTextArea variable...


It looks like you skipped that step and just used the data you already had in memory. Which would be a sensible thing to do in a real-life application, but not in a homework assignment which tells you to do something else.
 
Rose Deanne
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Clapham wrote:It looks like you skipped that step and just used the data you already had in memory.



Darn. Yeah, that's what I thought it was doing... I just really don't know what I'm missing in there. It's an online class where I'm basically just teaching myself out of a textbook, and the teacher rarely logs in to read his email, so I'm kinda stuck. What do I need to do?
 
Bartender
Posts: 5167
11
Netbeans IDE Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Rose, please BeForthrightWhenCrossPostingToOtherSites.
http://www.java-forums.org/new-java/48463-did-i-do-right-interest-calculator.html
 
Rose Deanne
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Darryl Burke wrote:Rose, please BeForthrightWhenCrossPostingToOtherSites.
http://www.java-forums.org/new-java/48463-did-i-do-right-interest-calculator.html



Oh, sorry, didn't realize that was an issue. Yeah, this is also posted to java-forums.org. It's just with the time zone difference and my wacky work schedule I don't really get to interact with people like I would like to, so I posted it to that place to maybe get a little bit more feedback.
 
Rose Deanne
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually, I'm just gonna "resolve" this one so I don't make anyone angry. Thank you, Paul and Darryl.
reply
    Bookmark Topic Watch Topic
  • New Topic