当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math remquo()用法及代码示例


该函数查找分子/分母的浮点余数(四舍五入到最接近的整数值),并将商内部存储到函数参数中传递的指针。

用法

假设分子为'n',分母为'd',指针为'p'。语法是:

return_type remquo(data_type n, data_type d, int* p);

注意:return_type 可以是 float、double 或 long double。

参数

n:分子的值。

d:分母的值。

p:指向内部存储商的对象的指针。

返回值

它返回浮点余数 n/d。

例子1

当参数类型相同时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
   float x=7.6;
   float y=5.4;
   int* p;
   std::cout << "Value of remainder is:" << remquo(x,y,p)<<'\n';
   cout<<"Value of quotient is:"<<*p;
   return 0;
}

输出:

Value of remainder is:2.2
Value of quotient is:1

例子2

当参数是不同类型时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
   int x=2;
  float y=1.1;
  int* q;
  std::cout << "Value of remainder is:" <<remquo(x,y,q)<<'\n';
  cout<<"Value of quotient is:"<<*q;
  return 0;
}

输出:

Value of remainder is:0.2
Value of quotient is:2





相关用法


注:本文由纯净天空筛选整理自 C++ Math remquo()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。