From: yang on
sorry im new here. here some noob Q :
1.can bitshift perform on binary value or only in decimal ?
2.let say , i input a=[101010] , hw can i tell the program that the value i input is a binary nt a decimal value .
thx .
From: us on
yang <arrr_baobao(a)hotmail.com> wrote in message <1923838133.533915.1270888487106.JavaMail.root(a)gallium.mathforum.org>...
> sorry im new here. here some noob Q :
> 1.can bitshift perform on binary value or only in decimal ?
> 2.let say , i input a=[101010] , hw can i tell the program that the value i input is a binary nt a decimal value .
> thx .

a hint:
- carefully look at the examples in

doc bitshift;

us