Integer Literals

T

Tricky

Guest
Is there a way of expressing integer literals in anything other than
decimal, without doing overly complicated type conversions?
 
On Mar 28, 11:42 am, Tricky <Trickyh...@gmail.com> wrote:
Is there a way of expressing integer literals in anything other than
decimal, without doing overly complicated type conversions?
Here are a few ways to express the number 16

16#10#
2#10000#

The number before the first # is the radix that you're using, the
numbers between the two ## is the number you're trying to represent.

KJ
 
On Mar 28, 11:02 am, KJ <kkjenni...@sbcglobal.net> wrote:
On Mar 28, 11:42 am, Tricky <Trickyh...@gmail.com> wrote:

Is there a way of expressing integer literals in anything other than
decimal, without doing overly complicated type conversions?

Here are a few ways to express the number 16

16#10#
2#10000#

The number before the first # is the radix that you're using, the
numbers between the two ## is the number you're trying to represent.

KJ
KJ is correct. I might add that the radix is always expressed in
decimal. It would be rather confusing (but simple to write!) to have
the radix expressed in the same base as the number (always "10")

Andy

Andy
 
Andy wrote:

It would be rather confusing (but simple to write!) to have
the radix expressed in the same base as the number (always "10")
Not to mention impossible to implement... think about it...

Regards,

--
Mark McDougall, Engineer
Virtual Logic Pty Ltd, <http://www.vl.com.au>
21-25 King St, Rockdale, 2216
Ph: +612-9599-3255 Fax: +612-9599-3266
 
On Mar 31, 6:37 pm, Mark McDougall <ma...@vl.com.au> wrote:
Andy wrote:
It would be rather confusing (but simple to write!) to have
the radix expressed in the same base as the number (always "10")

Not to mention impossible to implement... think about it...

Regards,

--
Mark McDougall, Engineer
Virtual Logic Pty Ltd, <http://www.vl.com.au
21-25 King St, Rockdale, 2216
Ph: +612-9599-3255 Fax: +612-9599-3266
That's what I meant by '(always "10")'

Not all things simple to write are easy (or even possible) to
implement.

Andy
 

Welcome to EDABoard.com

Sponsor

Back
Top