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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。