Results 1 to 4 of 4
Thread: Multiplying Values of an Array
- 02-06-2010, 03:32 AM #1
Member
- Join Date
- Feb 2010
- Posts
- 5
- Rep Power
- 0
Multiplying Values of an Array
I am trying to write an application that calculates product of odd integers 1-15 and then let the user determine the range of numbers to multiply after that. Here is what I have so far:
Where do I go from here? ThanksJava Code:public class PartTwo { public static void main (String [] args){ int[] array = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; array[0] = 1; array[2] = 3; array[4] = 5; array[6] = 7; array[8] = 9; array[10] = 11; array[12] = 13; array[14] = 15; } }
- 02-06-2010, 03:45 AM #2
Senior Member
- Join Date
- Feb 2010
- Location
- Ljubljana, Slovenia
- Posts
- 470
- Rep Power
- 4
Ok, first of all, you defined the contents of your array, and then immediately changed them, so rethink that step. And, if all you want to do is calculate the product of a few integers, you would be better off with a loop, a variable for the result, and if you wish to let the user continue with the multiplication after the initial calculation, another variable that stores the last number to be multiplicated.
- 02-06-2010, 03:55 AM #3
Member
- Join Date
- Feb 2010
- Posts
- 5
- Rep Power
- 0
Reply
OK please give me an example of what the for loop would look like your talking about. I do not know a damn thing obviously an example would go a long way! Thanks
Java Code:public class PartTwo { public static void main (String [] args){ int[] array = { 1, 3, 5, 7, 9, 11, 13, 15}; array[0] = 1; array[1] = 3; array[2] = 5; array[3] = 7; array[4] = 9; array[5] = 11; array[6] = 13; array[7] = 15; } }
-
For help on for loops, have a look here: The for Statement (The Java™ Tutorials > Learning the Java Language > Language Basics)
It has examples and information.
Similar Threads
-
An Array of different integer values
By lithium002 in forum New To JavaReplies: 7Last Post: 12-04-2009, 05:25 AM -
Multiplying Variables
By rnavarro9 in forum New To JavaReplies: 4Last Post: 12-03-2009, 08:10 AM -
[SOLVED] Multiplying Objects Problme
By thelinuxguy in forum Advanced JavaReplies: 7Last Post: 05-07-2009, 05:19 PM -
Same values in an array
By hawaiifiver in forum New To JavaReplies: 3Last Post: 02-24-2009, 08:33 PM -
replacing array values
By Jononomous in forum New To JavaReplies: 1Last Post: 05-22-2008, 03:27 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks