iphone - 如何从 3.875 小时中分离和存储小时和分钟
<p><p>我正在尝试根据距离和速度计算时间。
即 155 公里以 40 公里/小时的速度行驶。这使得 3.875 小时。但我需要将其显示为 HH:MM。</p>
<p>如何将 3.875 小时转换为 HH 和 MM?</p>
<pre><code>double kmNumber = ; // 155
double kmHourNumber = ; // 40
double hoursAndMinutes = number1 / number3;// 3,875
;
</code></pre>
<p>任何帮助将不胜感激!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>int hours = (int)hoursAndMinutes; // the integer part is the hours
int minutes = (hoursAndMinutes-hours)*60; // the fractional part of an hour
NSLog(@"HH:MM = %02d:%02d", hours, minutes);
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 如何从 3.875 小时中分离和存储小时和分钟,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/7179936/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/7179936/
</a>
</p>
页:
[1]