1. RE: adding numbers
Orpheus Mullen wrote:
> In My latest program I Need tobe abble to add two numbers which apper in
> a sequence together E.g "{1,6) = {16}" This probaly is very trivial but
> it really needs to be done
You need to post sample code.
Bernie
2. RE: adding numbers
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C20CDF.27E71090
charset=iso-8859-1
-----Original Message-----
From: Orpheus Mullen [mailto:orpheus_mullen at btopenworld.com]
Subject: adding numbers
In My latest program I Need tobe abble to add two numbers which apper in a
sequence together E.g "{1,6) = {16}" This probaly is very trivial but it
really needs to be done
--Derek Replies--------------
If you literally mean that your have a two-element sequence and you want to
convert it to a one-element sequence in the manner exampled above then ....
sequence x
x = {1,6}
x = { x[1]*10 + x[2] }
and in the general case of an arbitary sized sequence then...
atom r
r = 0
for i = 1 to length(x) do
r = (r*10) + x[i]
end for
x = {r}
hope this helps.
------------
Derek.
==================================================================
De informatie opgenomen in dit bericht kan vertrouwelijk zijn en
is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht
onterecht ontvangt wordt u verzocht de inhoud niet te gebruiken en
de afzender direct te informeren door het bericht te retourneren.
==================================================================
The information contained in this message may be confidential
and is intended to be exclusively for the addressee. Should you
receive this message unintentionally, please do not use the contents
herein and notify the sender immediately by return e-mail.
==================================================================
------_=_NextPart_000_01C20CDF.27E71090
Content-Type: application/ms-tnef
3. RE: adding numbers
- Posted by a.tammer at hetnet.nl
Jun 05, 2002
Hi Derek, this of course will only be valid with single-digit=
entries, you realise I guess
antoine
4. RE: adding numbers
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C20CFB.F6ECBDB0
charset=iso-8859-1
> -----Original Message-----
> From: a.tammer at hetnet.nl [mailto:a.tammer at hetnet.nl]
> Sent: Thursday, 6 June 2002 11:12
> To: EUforum
> Subject: RE: adding numbers
>
>
>
> Hi Derek, this of course will only be valid with single-digit
> entries, you realise I guess
> antoine
>
That all depends on what the specification is. Some examples might help
here...
So far we know that
{1,6} ==> {16}
must be true
but we are assuming
{23,17} ==> {247}
or this
{23, 17} = {2317}
That is why clear specifications are so important for programming.
----------
Derek.
==================================================================
De informatie opgenomen in dit bericht kan vertrouwelijk zijn en
is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht
onterecht ontvangt wordt u verzocht de inhoud niet te gebruiken en
de afzender direct te informeren door het bericht te retourneren.
==================================================================
The information contained in this message may be confidential
and is intended to be exclusively for the addressee. Should you
receive this message unintentionally, please do not use the contents
herein and notify the sender immediately by return e-mail.
==================================================================
------_=_NextPart_000_01C20CFB.F6ECBDB0
Content-Type: application/ms-tnef
5. RE: adding numbers
- Posted by a.tammer at hetnet.nl
Jun 05, 2002
Hi Derek
Exactly what I meant
And as is your style;
as concise as possible
EUrs @