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 7 of 7

Thread: I need serious help with this assignment!!!

  1. #1
    Junior Member
    Join Date
    Oct 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I need serious help with this assignment!!!

    Hello all, i need help with this assignement and its due tonight at midnight, i have done all that i know but i am a complete beginner in this, i have attached the assignment details in this post, it has to do with arrays. I can take all the help i can get. Thanks!
    Attached Files Attached Files


  2. #2
    Junior Member
    Join Date
    May 2013
    Location
    Charleston SC
    Posts
    21
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default Re: I need serious help with this assignment!!!

    Where is the code you have tried?

  3. #3
    Junior Member
    Join Date
    Oct 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: I need serious help with this assignment!!!

    Quote Originally Posted by jbarke12 View Post
    Where is the code you have tried?
    Here is the code i have below. I am a complete beginner at this so all help will be appreciated. I am not even sure if its setup right. Thanks



    package Array1;

    public class array {


    public static void main(string[] args){
    setOperations({1,2,3},{2,4,6}
    //int array[]1=(1,2,3)
    //int array[]2=(2,4,6)
    System.out.println("output");
    for (int i=0; i<intArray.length; i++)
    {
    System.out.println(intArray[i]);
    }






    public static int converttoDecimal(){
    int array= [3,2,4]

    }

    public static int unscrambleArray(){
    int number={125, 37, 29, 84, 8};




    }

  4. #4
    Junior Member
    Join Date
    May 2013
    Location
    Charleston SC
    Posts
    21
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default Re: I need serious help with this assignment!!!

    First things first, if I were you I would start by setting up all of methods. Read each instruction carefully and get the signatures right.

     public static void main(String[] args) {
            // TODO code application logic here
        }
        private static int convertToDecimal(int arr[]){
        return 0;
        }
    //create unscambleArray, printAccending, and SetOperations.

  5. The Following User Says Thank You to jbarke12 For This Useful Post:

    GregBrannon (October 8th, 2014)

  6. #5
    Junior Member
    Join Date
    Oct 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: I need serious help with this assignment!!!

    Ok thanks, then what do i do? I dont know how to setup up anything

  7. #6
    Junior Member
    Join Date
    May 2013
    Location
    Charleston SC
    Posts
    21
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default Re: I need serious help with this assignment!!!

    You don't know how to set up the rest of the methods?

  8. #7
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: I need serious help with this assignment!!!

    I dont know how to setup up anything
    If you're this lost, you should go to your instructor, the TAs, or other students in the class (as permitted) and ask for help. They instructor needs to know that you have somehow managed to not grasp the basic skills you should have acquired by now.

Similar Threads

  1. Behaviour of shortcut assignment and normal assignment for float
    By rakeshkr2 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: April 20th, 2014, 02:54 AM
  2. Help with my assignment.
    By javapol in forum Java Theory & Questions
    Replies: 1
    Last Post: February 8th, 2013, 08:20 AM
  3. assignment troubles polymorphism (guide for assignment included)
    By tdawg422 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: October 8th, 2011, 10:01 AM
  4. Assignment please Help :(
    By pagalas07 in forum Collections and Generics
    Replies: 3
    Last Post: March 30th, 2011, 08:52 AM
  5. Replies: 1
    Last Post: February 22nd, 2010, 08:20 AM