| Author |
getting values from for loop
|
Reshma Reddy
Ranch Hand
Joined: Dec 21, 2006
Posts: 197
|
|
Hi All,
In my for loop I am getting 10 values,this values return type is double, I want to assign each values(1-10) to individual variable(Ex:d1 is:23.345,d2 is:45.988,d3 is:87.098....etc).Can any one help me how Can I assign this.
regards,
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24081
|
|
Use an array of ten doubles:
|
[Jess in Action][AskingGoodQuestions]
|
 |
Reshma Reddy
Ranch Hand
Joined: Dec 21, 2006
Posts: 197
|
|
Hi hill,
thanks for your reply
regards,
|
 |
Reshma Reddy
Ranch Hand
Joined: Dec 21, 2006
Posts: 197
|
|
Hi hill,
how to assign this 10 values to 10different double values.
Ex: double d1,d2,d3....
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8562
|
|
Recommended reading
http://java.sun.com/docs/books/jls/second_edition/html/arrays.doc.html
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 10040
|
|
Are you trying to dynamically name your variables? i.e. if you have 10 doubles, you want variables named d1 through d10, but if you had 20 you'd want d1 through d20?
The short answer is - you can't. and there is no reason to. giving a variable a name is really only for the author's convenience. If they are being generated dynamically, the author will never see them, so they serve no point.
Seriously, use an array.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
 |
|
|
subject: getting values from for loop
|
|
|