Need a Tutor!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sandezco
    New Member
    • Nov 2007
    • 9

    Need a Tutor!

    I am taking a Visual Basic course and I am really struggling with it, does anyone know of anying tutoring services I can use?
  • lotus18
    Contributor
    • Nov 2007
    • 865

    #2
    Originally posted by sandezco
    I am taking a Visual Basic course and I am really struggling with it, does anyone know of anying tutoring services I can use?
    In just case you are in trouble with your codes, don't hesitate to post your questions here then we'll try to solve it.

    Rey Sean

    Comment

    • debasisdas
      Recognized Expert Expert
      • Dec 2006
      • 8119

      #3
      You can take help of our inhouse experts if struck anywhere.

      Comment

      • sandezco
        New Member
        • Nov 2007
        • 9

        #4
        Originally posted by sandezco
        I am taking a Visual Basic course and I am really struggling with it, does anyone know of anying tutoring services I can use?

        I am taking
        Programming In Visual Basic.

        I am programming in Visual Basic 2005, I am
        doing the following assignment;

        Use one-dimensional array to solve the following problem:
        …….
        A company pays its salespeople on a commission basis. The salespeople
        receive $200 per week, plus 9% of their gross sales for that week.
        For example, a salesperson who grosses $5000 in sales in a week
        receives $200 plus 9% of $5000, or a total of $650. Write an application
        (using an array of counters) that determines
        how many of the salespeople earned salaries in each of the following
        ranges (assume that each salesperson’s salary is truncated to an
        integer amount):

        a) $200-$299
        b) $300-$399
        c) $400-$499
        d) $500-$599
        e) $600-$699
        f) $700-$799
        g) $800-$899
        h) $900-$999
        i) $1000 an over

        The program should first ask how many salespeople are in the company,
        and then input as integers their grossed sales for that week.
        ....

        I understand the formula for figuring out the salary; (grosssales *
        .09) + 200 for the earned salary.

        I also understand arrays to a point. What I cannot figure out is how
        to have the calculated salary fall into the array, which by my
        understanding cannot have ranges in the elements (e.g. 200 - 299) and
        add to the counter or frequency for the salary range.

        I

        Comment

        • Mohan Krishna
          New Member
          • Oct 2007
          • 115

          #5
          Originally posted by sandezco
          :
          What I cannot figure out is how
          to have the calculated salary fall into the array, which by my
          understanding cannot have ranges in the elements (e.g. 200 - 299) and
          add to the counter or frequency for the salary range.
          Hi SANDEZCO!

          Do u mean by CALCULATED SALARY as net salary or grossSales * 0.9 ?
          If I correctly got ur point, Why don't u try an array of freq counters and add to them?

          ALL THE BEST!

          Comment

          Working...