当前位置:网站首页>In order to resist the flood, the soldiers have been fighting for 89 hours. How many days and hours are there in total?

In order to resist the flood, the soldiers have been fighting for 89 hours. How many days and hours are there in total?

2022-06-13 08:32:00 BUG_ Jia

 <script>

       

        var totalHours = 89;

       var day = parseInt(totalHours / 24);

       var hour = totalHours % 24;

       document.write(" Common demand " + day + " God " + hour + " Hours <br>"); */

      // Tips : The conversion formula between Celsius and Fahrenheit is : Centigrade  = 5/9.0*( Fahrenheit -32) Retain 3 Decimal place

      var hs = 80;

      var ss = (5 / 9.0) * (hs - 32);

      //ss = parseInt(ss * 1000) / 1000;

      ss = ss.toFixed(3);

      document.write(" Degrees Celsius :" + ss);

    </script>

原网站

版权声明
本文为[BUG_ Jia]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202270541410825.html