Author Topic: Help!  (Read 10798 times)

0 Members and 1 Guest are viewing this topic.

Offline Ender

  • x86
  • Hero Member
  • *****
  • Posts: 2390
    • View Profile
Re: Help!
« Reply #15 on: November 17, 2006, 05:21:20 pm »
I always feel that when people ask for help on homework it forces the forum members into a moral dilemma. The people who assist never know for sure whether the teacher allows it or whether the person asking for help is honest.

Anyways, hints...

That's not how compound interest works. It semantically resembles it but is conceptually stranded. If you have any questions about compound interest, post in the math forum ^_^.

Offline Ender

  • x86
  • Hero Member
  • *****
  • Posts: 2390
    • View Profile
Re: Help!
« Reply #16 on: November 17, 2006, 05:27:19 pm »
mm, and another hint

Your code doesn't make sense. You're reassigning a variable to a constant times a constant plus a constant each iteration of the for-loop.

Offline Ender

  • x86
  • Hero Member
  • *****
  • Posts: 2390
    • View Profile
Re: Help!
« Reply #17 on: November 17, 2006, 05:28:14 pm »
Uhh.. I don't think anyone here *uses* or *knows* QBasic.... :P

How does that prevent people from helping?

Woops, triple posted =\ Mods feel free to merge these...

Offline Blaze

  • x86
  • Hero Member
  • *****
  • Posts: 7136
  • Canadian
    • View Profile
    • Maide
Re: Help!
« Reply #18 on: November 21, 2006, 01:59:03 am »
Code: [Select]
CLS

'By Ian Fox
'November 21, 2006
'Some guys homework

DIM dblCurrentBalance AS DOUBLE         'The current balance
DIM sinInterestRate AS SINGLE           'The interest rate
DIM intInvestmentLength AS INTEGER      'How many years they are investing
DIM i AS INTEGER                        'A temporary variable used for FOR LOOPing


DO
        INPUT "How much money would you like to invest"; dblCurrentBalance
        PRINT "You must enter a value greater then `0'."
LOOP UNTIL dblCurrentBalance > 0

CLS

DO
        INPUT "What is the Interest rate on your investment"; sinInterestRate

        PRINT "The interest rate must not be a negative number."
LOOP UNTIL sinInterestRate >= 0

CLS

DO
        INPUT "How many full years would you like to invest"; intInvestmentLength
        PRINT "The amount of years must be positive."
LOOP UNTIL intInvestmentLength > 0

CLS

'Okay, we have all of our values and hopefully due to some basic
'error checking, everything should turn out correctly.. or at least
'it should make sense.


PRINT "You start out with $"; dblCurrentBalance; "invested at an interest rate of "; sinInterestRate; "%."

sinInterestRate = sinInterestRate * .01 'Make the interest rate a decimal for multiplying

FOR i = 1 TO intInvestmentLength
        dblCurrentBalance = dblCurrentBalance + (sinInterestRate * dblCurrentBalance)
        PRINT USING "After year ### you have $ ###########.## invested."; i; dblCurrentBalance
NEXT i

Meh, I think I shouldn't have wrote this... but I was bored.
« Last Edit: November 21, 2006, 02:05:01 am by Blaze »
And like a fool I believed myself, and thought I was somebody else...

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Help!
« Reply #19 on: November 21, 2006, 03:01:26 am »
Now how's he supposed to learn anything? >:(

Offline Ender

  • x86
  • Hero Member
  • *****
  • Posts: 2390
    • View Profile
Re: Help!
« Reply #20 on: November 22, 2006, 02:53:15 pm »
Yes, that was a hindrance to his learning. And although one may plausibly argue that such a transgression causes insignificant disturbance to the educational system, it is more a matter of morality. Just like downloading music illegally.

*braces himself for angry responses*

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Help!
« Reply #21 on: November 22, 2006, 02:56:07 pm »
Yes, that was a hindrance to his learning. And although one may plausibly argue that such a transgression causes insignificant disturbance to the educational system, it is more a matter of morality. Just like downloading music illegally.

*braces himself for angry responses*

Go fuck the RIAA.  We don't care about your stance on downloading music. 

Illegally downloading music has nothing to do with posting code for a homework assignment.  You just want attention.

Offline Ender

  • x86
  • Hero Member
  • *****
  • Posts: 2390
    • View Profile
Re: Help!
« Reply #22 on: November 22, 2006, 03:47:42 pm »
My favorite artists, Sigur Ros and Explosions in the Sky, distribute their music freely on their sites. Ergo my taste of music is superior.

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Help!
« Reply #23 on: November 22, 2006, 03:55:08 pm »
My favorite artists, Sigur Ros and Explosions in the Sky, distribute their music freely on their sites. Ergo my taste of music is superior.

So does Heathen.  I'm pretty sure you could find places that allow you to download their composures of Vivaldi, Bach, Mozart and Beethoven legally, therefore, you suck at analyzing your taste in music. ;)

Offline Blaze

  • x86
  • Hero Member
  • *****
  • Posts: 7136
  • Canadian
    • View Profile
    • Maide
Re: Help!
« Reply #24 on: November 22, 2006, 04:19:13 pm »
Feel free to delete it, I originally was just going to do it but not post it, but then I changed my mind.
And like a fool I believed myself, and thought I was somebody else...

Offline AntiVirus

  • Legendary
  • x86
  • Hero Member
  • *****
  • Posts: 2521
  • Best
    • View Profile
Re: Help!
« Reply #25 on: November 25, 2006, 10:38:29 pm »
A lot of my indie bands post their music on the Internet for free downloads.
The once grove of splendor,
Aforetime crowned by lilac and lily,
Lay now forevermore slender;
And all winds that liven
Silhouette a lone existence;
A leafless oak grasping at eternity.


"They say that I must learn to kill before I can feel safe, but I rather kill myself then turn into their slave."
- The Rasmus

Offline Joe

  • B&
  • Moderator
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Help!
« Reply #26 on: November 26, 2006, 05:41:34 am »
Ah, Why would you atempt to learn QBasic anyways?

Rabbit was around back in the days of QBASIC, I think. In fact, I remember back when Windows 95 was bleeding edge, Windows 3.1 was commonplace, and Visual Basic 3 was the thing to do.

Arn't you like 15? So..you were programming at the age of like 8?

I'm sixteen. I started programming basic AppleScript back in like.. third grade. So yeah, I was programming at the age of eight. From there I stepped up to some Commodore / Apple II BASIC, which I've completely forgotten. Eventually I moved at the beginning of a summer vacation and found myself in my room, programming, 24/7, becoming the God of VB.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
Re: Help!
« Reply #27 on: November 26, 2006, 05:43:54 am »
I'm sixteen. I started programming basic AppleScript back in like.. third grade. So yeah, I was programming at the age of eight. From there I stepped up to some Commodore / Apple II BASIC, which I've completely forgotten. Eventually I moved at the beginning of a summer vacation and found myself in my room, programming, 24/7, becoming the God of VB.

Joe, there are a lot of things I would call you.  God of VB is not on that list.
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline Blaze

  • x86
  • Hero Member
  • *****
  • Posts: 7136
  • Canadian
    • View Profile
    • Maide
Re: Help!
« Reply #28 on: November 26, 2006, 11:15:09 pm »
I'm sixteen. I started programming basic AppleScript back in like.. third grade. So yeah, I was programming at the age of eight. From there I stepped up to some Commodore / Apple II BASIC, which I've completely forgotten. Eventually I moved at the beginning of a summer vacation and found myself in my room, programming, 24/7, becoming the God of VB.

Joe, there are a lot of things I would call you.  God of VB is not on that list.

I love you.
And like a fool I believed myself, and thought I was somebody else...

Offline Joe

  • B&
  • Moderator
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Help!
« Reply #29 on: November 28, 2006, 05:09:58 pm »
I'm sixteen. I started programming basic AppleScript back in like.. third grade. So yeah, I was programming at the age of eight. From there I stepped up to some Commodore / Apple II BASIC, which I've completely forgotten. Eventually I moved at the beginning of a summer vacation and found myself in my room, programming, 24/7, becoming the God of VB.

Joe, there are a lot of things I would call you.  God of VB is not on that list.

Compared to some people though, I'm rather good, no? :P
I'd personally do as Joe suggests

You might be right about that, Joe.