Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Anybody know anything about software engineering

  1. #1
    Junior Member
    Join Date
    Oct 2010
    Posts
    10
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Anybody know anything about software engineering



    As far as like functional requirements, nonfunctional requirements, data requirements, behavioral requirements, interface requirements, and performance requirements

    I got a mid term assignment that has something dealing with those

    I wish I could somehow get the equation on my computer somehow but this is the best I could do(see attachment)

    Basically the assignment is to turn that equation into code.


    Anybody have an idea how I would go about doing that?

    I'll do my best to answer any questions about it. I will try to scan the entire paper onto the computer and upload it.

    Anybody have an idea how I would go about doing that?
    Attached Images Attached Images
    Last edited by jwill22; October 9th, 2010 at 01:14 PM. Reason: details


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Anybody know anything about software engineering

    It's a little difficult to tell what the formula you want to implement in code actually is, but since it has the summation sign I think you will likely need a loop of some kind (probably a for loop). If you're unsure of the Java syntax, I would recommend reading The Java Tutorials.

    double sum = 0;
    for(int i=0; i < upperLimit; ++i)
    {
        // stuff to sum in here
        // this sample sums the numbers 0 to upper limit
        sum += i;
    }

Similar Threads

  1. New to Programming, Starting college for computer engineering
    By TheBLC84 in forum Java Theory & Questions
    Replies: 1
    Last Post: September 17th, 2010, 04:06 AM
  2. Stub Software
    By beemer328i in forum File I/O & Other I/O Streams
    Replies: 1
    Last Post: November 22nd, 2009, 04:31 PM
  3. Build/dependency management software
    By Json in forum The Cafe
    Replies: 0
    Last Post: August 19th, 2009, 03:03 AM