C++ 中的sin() 函數返回以弧度給出的角度(參數)的正弦值。
該函數在<cmath> 頭文件中定義。
[Mathematics] sin x = sin(x) [In C++ Programming]
sin() 原型(從 C++ 11 標準開始)
double sin(double x); float sin(float x); long double sin(long double x); double sin (T x); // For integral type
參數:
sin() 函數接受一個以弧度表示的強製參數。
返回:
sin() 函數返回範圍內的值[-1, 1].返回的值或者在double
,float
, 或者long double
.
示例 1:sin() 如何在 C++ 中工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = 0.439203, result;
result = sin(x);
cout << "sin(x) = " << result << endl;
double xDegrees = 90.0;
// converting degrees to radians
x = xDegrees*3.14159/180;
result = sin(x);
cout << "sin(x) = " << result << endl;
return 0;
}
運行程序時,輸出將是:
sin(x) = 0.425218 sin(x) = 1
示例 2:sin() 具有整數類型的函數
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = -1;
double result;
result = sin(x);
cout << "sin(x) = " << result << endl;
return 0;
}
運行程序時,輸出將是:
sin(x) = -0.841471
相關用法
- C++ sinh()用法及代碼示例
- C++ complex sinh()用法及代碼示例
- C++ signbit()用法及代碼示例
- C++ signal()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ std::less_equal用法及代碼示例
- C++ set rbegin()用法及代碼示例
- C++ string::length()用法及代碼示例
- C++ set upper_bound()用法及代碼示例
- C++ set crbegin用法及代碼示例
- C++ std::is_member_object_pointer模板用法及代碼示例
- C++ std::copy_n()用法及代碼示例
- C++ std::string::insert()用法及代碼示例
- C++ std::is_sorted_until用法及代碼示例
- C++ std::iota用法及代碼示例
- C++ set size用法及代碼示例
- C++ std::numeric_limits::digits用法及代碼示例
- C++ sscanf()用法及代碼示例
- C++ std::string::data()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ sin()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。