在寫C語言的程序時,在開頭加上一個頭文件math.h即可。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:域名注冊、虛擬空間、營銷軟件、網(wǎng)站建設、豐縣網(wǎng)站維護、網(wǎng)站推廣。
即可直接使用sin(x),特別注意x應該為弧度制,如果不是弧度制需要轉(zhuǎn)化為弧度制。
添加頭文件方法:#includemath.h。
擴展資料:
在C語言家族程序中,頭文件被大量使用。一般而言,每個C++/C程序通常由頭文件和定義文件組成。頭文件作為一種包含功能函數(shù)、數(shù)據(jù)接口聲明的載體文件,主要用于保存程序的聲明,而定義文件用于保存程序的實現(xiàn)。
C標準函數(shù)庫(C Standard library)是所有符合標準的頭文件(head file)的集合,以及常用的函數(shù)庫實現(xiàn)程序,例如I/O 輸入輸出和字符串控制。
不像 COBOL、Fortran 和 PL/I等編程語言,在 C 語言的工作任務里不會包含嵌入的關(guān)鍵字,所以幾乎所有的 C 語言程序都是由標準函數(shù)庫的函數(shù)來創(chuàng)建的。
1995年,Normative Addendum 1 (NA1)批準了三個頭文件(iso646.h, wchar.h, and wctype.h)增加到C標準函數(shù)庫中。C99標準增加了六個頭文件(complex.h, fenv.h, inttypes.h, stdbool.h, stdint.h, and tgmath.h)。
C11標準中又新增了5個頭文件(stdalign.h, stdatomic.h, stdnoreturn.h, threads.h, and uchar.h)。至此,C標準函數(shù)庫共29個頭文件 。
常用的C語言函數(shù)庫:
math.h,stdio.h,stdlib.h,time.h,string.h。
使用方法:#include+函數(shù)庫名
參考資料來源:百度百科-C標準函數(shù)庫
用法:
doublesin(doublex);
doublecos(doubley);
例:
#includestdio.h
#includemath.h
intmain()
{
intn;
doublet;
constdoublepi=4.0*atan(1.0);
scanf("%d",n);
t=(n*pi)*1.0/180;
printf("%lf\n",pi);
printf("%lf\n",sin(t));
擴展資料
sinln等函數(shù),sin(pi/2)=1,ln1=0的使用
例:
#includemath.h
#includestdio.h
intmain()
{
doublepi=3.1416;
printf("sin(pi/2)=%f\nln1=%f\n",sin(pi/2),log(1.0));
return0;
}
正弦函數(shù)是三角函數(shù)的一種.
定義:對于任意一個實數(shù)x都對應著唯一的角(弧度制中等于這個實數(shù)),而這個角又對應著唯一確定的正弦值sin x,這樣,對于任意一個實數(shù)x都有唯一確定的值sin x與它對應,按照這個對應法則所建立的函數(shù),表示為f(x)=sin x,叫做正弦函數(shù)。
在C語言當中,sin 函數(shù)在標準庫math.h當中。注意其輸入?yún)?shù)單位是弧度,將角度轉(zhuǎn)換為弧度,請將角度乘以 π/180。
功 能: 正弦函數(shù)? ?
用 法: double sin(double x);
例程:
12345678#include?stdio.h?#include?math.h?int?main(void)?{????double?result,?x?=?0.5;????result?=?sin(x);????printf("The?sin()?of?%lf?is?%lf\n",?x,?result);????return?0;?}
C語言sin()用來計算參數(shù)x 的正玄值,然后將結(jié)果返回。返回-1 至1 之間的計算結(jié)果。
例子:
#include math.h
main(){
double answer = sin(0.5);
printf("sin(0.5) = %f\n", answer);
}
執(zhí)行
sin(0.5) = 0.479426
C語言sin():
sin()原型:double sin(double x)
sin()角度與弧度:
π=180°
1°=π/180
1(rad)=180/π
角度轉(zhuǎn)弧度:用角度乘以π/180
弧度轉(zhuǎn)角度:用弧度乘以180/π,或者用rtod()函數(shù)
擴展資料:
與sin相似的acos函數(shù)
函數(shù)名: acos
功 能:計算并返回arccos(x)值、要求-1=X=1
函數(shù)與形參類型:
double acos(x)
double x;
程序例:
#include stdio.h
#include math.h int main(void)
{
double result;
double x = 0.5; result = acos(x);
printf("The arc cosine of %lf is %lf\n", x, result);
return 0;
}
參考資料:CSDN博客頻道-C語言中sin和cos的用法
double?sin(double?x);
sin參數(shù)為double類型,返回值也為double
#includestdio.h
#includemath.h
int?main()
{
const?double?pi?=?3.1415926;
double?d,?e;
scanf("%f",?d);
e?=?sin(2*pi*d/63.84);
printf("%lf\n",?e);
return?0;
}
徑度與角度不同
建議修改如下:
#include stdio.h
#include math.h
#define PI 3.14159265
void main()
{
float x;
double y;
printf("入角度值:\n");
scanf("%f",x);
y=sin(x*PI/180);
printf("sin(%f°)=%2lf\n",x,y);
}