浮点值除法

该示例说明了如何使用float类型变量除法运算。

#include <stdio.h>

int main(void)
{
  float total_length = 10.0f;         // In feet
  float count = 4.0f;                 // Number of equal pieces
  float piece_length = 0.0f;          // Length of a piece in feet

  piece_length = total_length/count;

  printf("A plank %f feet long can be cut into %f pieces %f feet long./n",
                                       total_length, count, piece_length);
  return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266678.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论