fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. byte b = 0x80;
  8. short MSB;
  9. short LSB;
  10. double data;
  11. MSB = b;
  12. LSB = b;
  13. data = (((short)(MSB << 8)) | LSB) / 32768.0;
  14. Console.Out.WriteLine(data);
  15. }
  16. }
Success #stdin #stdout 0s 131520KB
stdin
Standard input is empty
stdout
-0.99609375