Fixnum problem plz help

hy

i am new to ruby i am trieng to get some skils but i have a problem when
i use a fixnum :

years = ask("")
days = years * 365
puts days

my answer is
222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

but i should be 730

i have an screenshot as an attachment plz help me

On [Wed, 04.03.2009 06:28], Guy D. wrote:

my answer is
222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

but i should be 730

i have an screenshot as an attachment plz help me
Thats the character “2” (not the number) repeated 365 times. you
probably want years = ask("").to_i

Guy D. wrote:

my answer is
222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

but i should be 730

i have an screenshot as an attachment plz help me

Please paste your ask() Method. That appears to be where the problem
is.

=======================================================================
This email, including any attachments, is only for the intended
addressee. It is subject to copyright, is confidential and may be
the subject of legal or other privilege, none of which is waived or
lost by reason of this transmission.
If the receiver is not the intended addressee, please accept our
apologies, notify us by return, delete all copies and perform no
other act on the email.
Unfortunately, we cannot warrant that the email has not been
altered or corrupted during transmission.

Guy D. [email protected] writes:

my answer is
222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

but i should be 730

I think you are lying. Twice.

First, the answer is probably not what you’re telling but rather:

22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

Then it should NOT be 730, but what you get.

This is because for all we know, ask(“”) is returning “2” and 365
times “2” is a string containing 365 2s. At least in such a inferior
language as Ruby.

In more strongly typed programming languages such as Common Lisp,
you’d get an error:

C/USER[929]> (* “2” 365)

*** - *: “2” is not a number

i have an screenshot as an attachment plz help me

Good for you!

Pascal J. Bourguignon wrote:

puts days

Unsuccessful troll is unsuccessful.

i have an screenshot as an attachment plz help me

Good for you!

=======================================================================
This email, including any attachments, is only for the intended
addressee. It is subject to copyright, is confidential and may be
the subject of legal or other privilege, none of which is waived or
lost by reason of this transmission.
If the receiver is not the intended addressee, please accept our
apologies, notify us by return, delete all copies and perform no
other act on the email.
Unfortunately, we cannot warrant that the email has not been
altered or corrupted during transmission.

On Tue, 03 Mar 2009 16:28:48 -0500, Guy D. wrote:

my answer is

222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

but i should be 730

i have an screenshot as an attachment plz help me

Ask is returning the string “2” instead of the number 2.
When you use the multiplication operator on a string, it creates a
longer
string with that many copies of the string concatenated back to back, so
instead of multiplying the number 2 by 365 to give 730, you got a string
containing exactly 365 twos.

years=ask("").to_i

–Ken

Pascal J. Bourguignon wrote:

puts days

i have an screenshot as an attachment plz help me

Good for you!

And for the benefits, such as they are, of strong typing, we get to a
whole other level of detail to attend to. No thanks. Did that for a time
with Pascal. I prefer the mindless grace of waterfowl.

t.

Tom C., MS MA, LMHC - Private practice Psychotherapist
Bellingham, Washington, U.S.A: (360) 920-1226
<< [email protected] >> (email)
<< TomCloyd.com >> (website)
<< sleightmind.wordpress.com >> (mental health weblog)

Pascal J. Bourguignon wrote:

This is because for all we know, ask("") is returning “2” and 365
times “2” is a string containing 365 2s. At least in such a inferior
language as Ruby.

In more strongly typed programming languages such as Common Lisp,

Typo. Should be Commune Lisp.

you’d get an error:

C/USER[929]> (* “2” 365)

*** - *: “2” is not a number

Commune Lisp:
(* “2” 9)
*** ERROR!!! ***

Awk:
“2” * 9
18

Ruby:
“2” * 9
“222222222”

Now, which is the lowest-level language?

Pascal J. Bourguignon wrote:

In more strongly typed programming languages such as Common Lisp,
you’d get an error:

C/USER[929]> (* “2” 365)

*** - *: “2” is not a number

This is nothing to do with “strongly typed”. Ruby’s concept of the
difference between a string and an integer is just as strict as LISP’s.

Rather, Ruby provides semantics to the ‘*’ operator/function for strings
which LISP doesn’t.

You can get exactly the behaviour you desire by removing some Ruby
functionality.

irb(main):001:0> String.class_eval { undef_method(:) }
=> String
irb(main):002:0> “2” * 365
NoMethodError: undefined method `
’ for “2”:String
from (irb):2
from :0

Brian C. [email protected] writes:

from (irb):2
from :0

Right, it is too much overloading, not weak typing. Sorry for the
confusion.

2009/3/4 William J. [email protected]:

Typo. Should be Commune Lisp.

Awk:
“2” * 9
18

Ruby:
“2” * 9
“222222222”

C:
printf(“%d\n”,‘2’*9);
450

On Mar 3, 3:49 pm, Michael M. [email protected] wrote:

Unsuccessful troll is unsuccessful.

I had to re-read the post to be sure it actually came from Pascal.
After all, there were no nested parens in the entire thing.

On Tue, Mar 3, 2009 at 10:43 PM, Pascal J. Bourguignon
[email protected] wrote:

language as Ruby.
In more strongly typed programming languages such as Common Lisp,
What?? There are other languages than CL??? You must be kidding? I
warn you I might report you to the CL-ML.
Some things are just too serious to joke with!!

And BTW, seems you posted this by error to ruby talk, well I’m sure
that was just a stupid mistake you will take of correcting very soon.

Thank you in advance.

Cheers
Robert

On Wed, Mar 4, 2009 at 6:51 PM, Yossef M. [email protected]
wrote:

On Mar 3, 3:49 pm, Michael M. [email protected] wrote:

Unsuccessful troll is unsuccessful.

I had to re-read the post to be sure it actually came from Pascal.
After all, there were no nested parens in the entire thing.

But the nested parens occur in Lisp, right, Pascal is the thing with
“:=” or am I confused here? (Maybe I should go to Delphi to seek some
guidance)

R.