當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ sin()用法及代碼示例


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() 函數



相關用法


注:本文由純淨天空篩選整理自 sin() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。