| Author |
assignment problem
|
Candy Bortniker
Ranch Hand
Joined: Mar 17, 2003
Posts: 123
|
|
I am trying to set a min and a max to a value. I have: String max; String min; max = '55'; min = '35'; I get a compilation error of 'invalid character constant'. What could possibly be wrong here?
|
 |
Murat Balkan
Ranch Hand
Joined: Sep 10, 2002
Posts: 127
|
|
use double quotes. String t="15"; String t2="25"; etc. But if you will use further mathematical calcs, you should consider declaring these values int,long or double. Hope helps, Murat
|
 |
Davy Kelly
Ranch Hand
Joined: Jan 12, 2004
Posts: 384
|
|
yeah, just a small syntax error, of using single quotes '' instead of double quotes "" for Strings. I take it you are writing a program that just outputs the min and max as Strings if a test of some kind goes wrong e.g. Davy
|
How simple does it have to be???
|
 |
 |
|
|
subject: assignment problem
|
|
|