0
我有2或更多的十進制值,我將這些值轉換爲二進制和應用二元運算符,然後我在mysql中獲得單個二進制值。如何通過應用任何二進制操作返回十進制值?
然後我必須在C#中使用此生成的二進制文件並將該二進制值轉換回十進制值。
Sample Calculation
suppose 1,2 are two decimal values
binary representation is 001 , 010
if I apply AND operation in mysql then I'm getting 000 as result
now I want to again apply some binary operator on 000 and convert it back to 1,2 in C#
如何做到這一點?或者可能嗎?
我不認爲這是可能的。這樣思考:如果你對2和3應用+,你得到5.但是你可以做什麼來找出5的原始組件? – Lasooch
沒辦法,'001'和'010'只給出1個結果,但是從'000'得到操作數,我們有很多種情況,比如'001'和'100','001'和'000'。 .. –