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


C++ scalbn()用法及代码示例


scalbn()函数在cmath头文件中定义。此函数用于计算给定数x与提高到幂n的FLT_RADIX的乘积。

句法:-

float scalbn(float x, int n); 

或者


double scalbn(double x, int n); 

或者

long double scalbn(long double x, int n); 

或者

double scalbn(integral x, int n);  

参数:-此方法有两个参数:

  • x:这代表了有意义的价值。
  • n:这代表指数的值。

返回值:此函数返回给定数x与FLT_RADIX乘以n的乘积。借助公式:

scalbn(x, n) = x * FLT_RADIXn

以下示例程序旨在说明上述函数:-

示例1:

// C++ program to demonstrate 
// example of scalbn() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    int n = 7; 
    int x = 5; 
    int ans; 
  
    ans = scalbn(x, n); 
    cout << x << " * "
         << FLT_RADIX << "^"
         << n << " = "
         << ans << endl; 
  
    return 0; 
}
输出:
5 * 2^7 = 640

示例2:

// C++ program to demonstrate 
// example of scalbn() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    int n = 7; 
    double x = 3.9; 
    int ans; 
  
    ans = scalbn(x, n); 
    cout << x << " * "
         << FLT_RADIX << "^"
         << n << " = "
         << ans << endl; 
  
    return 0; 
}
输出:
3.9 * 2^7 = 499


相关用法


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