C++ cos() 函数
cos() 函数是cmath头文件的库函数,用于求给定数字(角度)的余弦,它接受一个数字(x
) 并返回角度的余弦x
弧度。
cos() 函数的语法:
cos(x);
参数: x
– 是要计算其余弦的弧度角值。
返回值: double
– 它返回双精度值,即给定角度的余弦值x
弧度。
例:
Input: float x = 2.45; Function call: cos(x); Output: -0.770231
C++代码演示cos()函数的例子
// C++ code to demonstrate the example of
// cos() function
#include <iostream>
#include <cmath>
using namespace std;
// main() section
int main()
{
float x;
x = -10.23;
cout<<"cos("<<x<<"):"<<cos(x)<<endl;
x = 0;
cout<<"cos("<<x<<"):"<<cos(x)<<endl;
x = 2.45;
cout<<"cos("<<x<<"):"<<cos(x)<<endl;
return 0;
}
输出
cos(-10.23):-0.692952 cos(0):1 cos(2.45):-0.770231
参考:C++ cos() 函数
相关用法
- C++ complex cos()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ cosh()用法及代码示例
- C++ count()用法及代码示例
- C++ copy_n()用法及代码示例
- C++ copy()用法及代码示例
- C++ count_if()用法及代码示例
- C++ conj()用法及代码示例
- C++ copy_backward()用法及代码示例
- C++ copysign()用法及代码示例
- C++ copy_if()用法及代码示例
- C++ clock()用法及代码示例
- C++ cbrt()用法及代码示例
- C++ c32rtomb()用法及代码示例
- C++ c16rtomb()用法及代码示例
- C++ ctime()用法及代码示例
- C++ cin get()用法及代码示例
- C++ ceil()用法及代码示例
- C++ cauchy_distribution a()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
注:本文由纯净天空筛选整理自 cos() function with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。