Results 1 to 5 of 5
Thread: Help with Array List
- 01-24-2013, 01:47 AM #1
Member
- Join Date
- Jan 2013
- Posts
- 2
- Rep Power
- 0
Help with Array List
I'm a newbie in Java and am currently learning Array List. If any of you will be so kind,I need to complete these basic exercises with for loops but I'm not sure how to set it up.
Programming Exercises for Chapter 46
- 01-24-2013, 02:13 AM #2
Member
- Join Date
- Oct 2011
- Posts
- 92
- Rep Power
- 0
Re: Help with Array List
First things first. We aren't going to do your work for you. List out the exercises that you want help with, and we'll give you guidance.
- 01-24-2013, 11:24 PM #3
Member
- Join Date
- Jan 2013
- Posts
- 2
- Rep Power
- 0
Re: Help with Array List
I understand.
Then for the 1st exercise, this is what i got as of now, unsure of what to add in the for loop.
class Exercise1
{
public static void main ( String[] args )
{
int[] val = {0, 1, 2, 3};
for(int i;i<=3;i++)
{
val
}
sum = val
System.out.println( "Sum of all numbers = " + sum );
}
}
- 01-25-2013, 09:35 PM #4
Member
- Join Date
- Jan 2013
- Location
- england
- Posts
- 6
- Rep Power
- 0
Re: Help with Array List
in your program code there are several things to look at..
you need to give the variable i an initial value
you need to declare what type of variable sum is and give it an initial value
the expression(formula) within your for loop for the running total i.e. sum = sum + val[i]
- 01-26-2013, 03:30 PM #5
Member
- Join Date
- Oct 2011
- Posts
- 92
- Rep Power
- 0
Similar Threads
-
array List help please!
By Dex in forum New To JavaReplies: 7Last Post: 08-05-2012, 08:18 PM -
Array List
By turtlish in forum New To JavaReplies: 10Last Post: 12-20-2011, 08:48 PM -
Linked List, Array List time complexity
By Rick99771977 in forum New To JavaReplies: 4Last Post: 08-18-2011, 05:37 AM -
Trying to make an array list // inserting an element to middle of array
By javanew in forum New To JavaReplies: 2Last Post: 09-06-2010, 01:03 AM -
Array List
By mashyum in forum Advanced JavaReplies: 2Last Post: 07-28-2009, 06:47 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks