C++ sin() 函数
sin() 函数是 cmath 头文件的库函数,用于求给定数字(角度)的正弦,它接受一个数字(x
) 并返回角度的正弦x
弧度。
sin() 函数的语法:
sin(x);
参数: x
– 是要计算正弦值的弧度角值。
返回值: double
– 它返回双精度值,即给定角度的正弦值x
弧度。
例:
Input: float x = 2.45; Function call: sin(x); Output: 0.637765
C++代码演示sin()函数的例子
// C++ code to demonstrate the example of
// sin() function
#include <iostream>
#include <cmath>
using namespace std;
// main() section
int main()
{
float x;
x = -10.23;
cout<<"sin("<<x<<"):"<<sin(x)<<endl;
x = 0;
cout<<"sin("<<x<<"):"<<sin(x)<<endl;
x = 2.45;
cout<<"sin("<<x<<"):"<<sin(x)<<endl;
return 0;
}
输出
sin(-10.23):0.720984 sin(0):0 sin(2.45):0.637765
参考:C++ sin() 函数
相关用法
- C++ sinh()用法及代码示例
- C++ complex sinh()用法及代码示例
- C++ signbit()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ string::length()用法及代码示例
- C++ set upper_bound()用法及代码示例
- C++ std::is_member_object_pointer模板用法及代码示例
- C++ std::copy_n()用法及代码示例
- C++ std::string::insert()用法及代码示例
- C++ std::is_sorted_until用法及代码示例
- C++ std::iota用法及代码示例
- C++ std::numeric_limits::digits用法及代码示例
- C++ std::string::data()用法及代码示例
- C++ smatch max_size()用法及代码示例
- C++ std::is_permutation用法及代码示例
- C++ std::list::sort用法及代码示例
- C++ string::npos用法及代码示例
注:本文由纯净天空筛选整理自 sin() function with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。