Help me complete my code.


 
Thread Tools Search this Thread
Top Forums Programming Help me complete my code.
# 1  
Old 10-19-2009
Help me complete my code.

Ok, so I have done the 'mathematical part' just I am not sure where to put them in and how to get them to return answers.

Code:
public class Main {

    public static void main(String[] args) {

        
    }
//Part A.

//1&2- Computes the sum andproduct of all of the elements of the array a.
        public function SumAndProduct()
        {
            var arr:Array = [1, 2, 3, 4, 5];
            var sum:int = 0;
            var prod:int = 1;
 
            for (var i:int = 0; i < arr.length; i++)
            {
                sum += arr[i];
                prod *= arr[i];
            }
 
            trace("Sum: " + sum); // 15
            trace("Product: " + prod); // 120
        }
    }

//4- Finds the maximum value of the elements of the array.
var x=new Array(3,4,5,6);
var j=0;
for(i=0;i<x.length;i++)
  {
  if(x[i]>x[j])
  j=i;
  }
alert(x[j]);

//5- Computes the average value of the array elements.

    double nums[]={1.0,2.3,3.4,4.5,40.5};
    double result=0.0;
    
    for(i=0; i < nums.length; i++){
      result = result + nums[i];
    }
    System.out.println("Average is =" + result/nums.length);
    }

//Part B.

//1- Adding and subtracting each successive term.
 public static int alterningSum (int[] a){
       
       for (int i = 0; i < a.length; i++){
           p += a[i];
           i++;
       }
       for (int j = 1; j < a.length; j++){
           m -= a[j];
           j++;
       }
       
       
    }

//2- Returns the variance of the elements in the array.
    public static double variance(double[] a){
        double avg = average(a);
        double acc = 0.0;
        double var = 0.0;
        for (int i = 0; i < a.length; i++ ){
            acc += Math.pow (( a[i] - avg ), 2.0);
        }
        var = acc / (double) a.length;
        return var;
    }


//3- Returns the number that occurs most frequently.
    public static int mode(int[] a){
    int[] freq = frequence(a);
    int l = 0;
    int m = 0;
    int max = freq[0];

    for (int i = 0; i < freq.length; i++){
        if (freq[i] > max){
            max = freq[i];
            l = i;
        }
 
    }
 
    }

//Part C.

//1- Scales each element of the array by multiplying it by factor.
    public static void scale(int[]a, int factor){
        for (int i = 0; i < a.length; i++){
            a[i] *= factor;
        }

    }

//2- Exchanges the elements a[i] and a[j].
     public static void swap(int[] a, int i, int j){
        System.out.println("Swap array :");
        if ( i < ( a.length - 1) && j < ( a.length - 1 ) ){
            
            a[i] = a[j];
            a[j] = a[i];
             
        }
       
     }

//3- Replaces each element i of the array with the cumulative sum of the elements a[0], a[1], ... , a[i].
      public static void cumulate(int[] a){
        System.out.println("Cumulate array :");
        int temp = 0;
        for (int i = 0; i < a.length; i++){
            temp += a[i];
            a[i] = temp;
            
        }
        
      }




//Part E.

//1- Returns an array containing the first n squares starting from 0.
public static int[] squares(int n){
       int[] res = new int[n + 1];

       for (int k = 0; k < res.length; k++){
            res [k] = k;
            res[k] *= res[k];
        }
       return res;
 }

I'd appreciate if someone could help me with:

double maxProfit(double[] prices)

Suppose that the array prices contains the daily share price for a number of days. This method calculates the maximum possible profit that you could have made on this share if you had bought it on one of the days, and sold it on one of the later days.
For example, suppose the prices are {10.80, 11.00, 10.50, 12.00, 14.00, 13.00}. Then if you have bought on day 0 and sold on day 5, you would have made $2.20. But if you bought on day 2 and sold on day 4 you would have made $3.50.

Not sure how to do this one, but I think that there's a need of loops.

(New to java, but know some knowledge from perl which helped me here)

~H
# 2  
Old 10-19-2009
Hello,

Why Java? If you need a GUI or web site integration you might be on the right track.

I prefer standard C due its ability to introduce pseudo classes with law enforcement taken care of by the programmer, as well as the ability to use extreme low level optimizations.

And your subject line on this post is a huge red flag.

All the Best,

Heavy J

Last edited by HeavyJ; 10-19-2009 at 09:10 PM.. Reason: typo
# 3  
Old 10-19-2009
Huge red flag?

We are allowed to post school work after we've tried it ourselves I believe... And clearly I have, I just don't know how to get each code working.

Do I put them in the Main class? Or in the public static void main(String[] args)? and how do I get them to return values? I am not asking that you make the code for me, since I've already done...

~H
# 4  
Old 10-19-2009
HardyV2,

School work, all right... That answers the "why Java?" question.

Red Flag = way too general = not that important = don't answer me

I think you should ask your teacher or prof. about the class structure.

When using extreme optimization, a programmer decides where everything should go, so that it will run as fast as computer can run it. Classes are a level of abstraction that come in handy when writing programs 50,000 lines long, otherwise they are just data structures.

In conclusion, I doubt that anyone else will look at this post because the subject line is extremely weak, and I only looked at it because I have been unemployed after getting a degree in Aerospace Engineering in 2005.

Ask your teacher... Or look in your text book.
# 5  
Old 10-20-2009
KK, thxz anyways for the time.

~H
# 6  
Old 10-20-2009
Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Complete Code, or just Problematic Sections??

In general, would most experts, moderators and programmers, like to see the original entire script (even if very long), or just a simplified version of the problematic parts? I currently have a GNU bash function (with a lot of issues). Is it more advisable to make separate posts for each... (3 Replies)
Discussion started by: AlphaLexman
3 Replies

2. Homework & Coursework Questions

Please help with the following fork code..with complete explanation

I have the following piece of codes. Please explain it to me in great detail how are these codes working. 1. #include <stdio.h> int main(){ int x; x=0; while (x<2 && fork()){ if (!fork()) execlp("echo","x++","x",0); x++; system("echo x+x"); } } 2. #include <stdio.h> int i;... (1 Reply)
Discussion started by: prakashabii
1 Replies

3. UNIX for Dummies Questions & Answers

A complete New Bie Here

Hello Guys I am a complete New bie in UNIX ( Just know a few of the commands ). Please guide how should I learn Unix In a proper way . I am doing a job, so i will have to do the study at home . Which books , Links, Pages you will suggest me so that i can learn UNIX fast . Thanks (5 Replies)
Discussion started by: supercops
5 Replies

4. UNIX for Dummies Questions & Answers

BASH complete-filename & menu-complete together

Hi, Does anyone know how to make BASH provide a list of possible completions on the first tab, and then start cycling through the possibilites on the next tab? Right now this is what I have in my .bashrc: bind "set show-all-if-ambiguous on" bind \\C-o:menu-complete This allows... (0 Replies)
Discussion started by: Mithu
0 Replies

5. Shell Programming and Scripting

Please complete this program.

Hi All, I need some help to complete the below script, after executing below script blank lines are coming, but i am expecting 4 digit numeric no. Please solve the issue ASAP. function portno { while (true) do random=`echo $RANDOM | cut -c 1-4` port=`netstat -a | grep -c $random` ... (5 Replies)
Discussion started by: sridhusha
5 Replies

6. UNIX for Dummies Questions & Answers

complete noob

Hi all, This is my first post. I am a complete noobie to the UNIX OS, I have an iMac G5 with the unix shell built in and am interested in learning how to use it to do things useful with it, but have no idea where to start. I have read over the basic commands but they haven't helped me much yet.... (3 Replies)
Discussion started by: avdrummerboy
3 Replies

7. UNIX Desktop Questions & Answers

Auto complete

How can I set up the profile for a use so when entering a eg first charachter of a file and then pressing the tab OS will complete the file name. Thanks in advance Tom (4 Replies)
Discussion started by: Tom_Zamani
4 Replies
Login or Register to Ask a Question