将温度从F转换为C的程序

时间:2019-11-04 02:35:12

标签: mips qtspim spim

我正在编写一个程序,以在MIPS中将温度从F转换为C,但是编译器返回0。当我使用整数执行此操作时,有什么错误的主意吗?

代码部分

    RedisCommands<String, String> syncCommands = MyRedisClient.getSyncCommands(connection);

    // this works:
    RedisCodec<String, String> codec = StringCodec.UTF8;
    String result = syncCommands.dispatch(TS.CREATE, new StatusOutput<>(codec),new CommandArgs<>(codec).addKey("myTS"));    
    System.out.println("Custom Command TS.CREATE " + result);

    //custom command definition:
    public enum TS implements ProtocolKeyword{
        CREATE;
        public final byte[] bytes;
        private TS() {
            bytes = "TS.CREATE".getBytes(StandardCharsets.US_ASCII);
        }
        @Override
        public byte[] getBytes() {
            return bytes;
        }   
    }

输出应该是浮点型摄氏温度,但返回0。

0 个答案:

没有答案