1、首先,打開VS2019,并且創(chuàng)建一個C語言源文件,會看到如下的頁面。
創(chuàng)新互聯(lián)公司專注于涼山州網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供涼山州營銷型網(wǎng)站建設(shè),涼山州網(wǎng)站制作、涼山州網(wǎng)頁設(shè)計、涼山州網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造涼山州網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供涼山州網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
2、鼠標(biāo)在下圖紅色圈所示的區(qū)域單擊一下。
3、之后,再按Enter鍵,會看到新的一行。
4、在這一行中輸入:#includemath.h。
5、接著,在void main()中去定義一個單精度型變量。
6、定義完回車后,輸入a=sin(90);注意,90指的是90弧度。
7、再次回車,輸入printf("%f",a);。
8、可以按F5鍵去運(yùn)行這段程序,會看到如下的結(jié)果。即90弧度的正弦值約為0.893997。
源代碼如下:
#include#include#define EX 0.000001
#define PI 3.14159265
int main()
{
double x=0.0, temp=1.0, sin=0.0;
int i;
printf("Please input a degree:");
scanf("%lf",x);
x=x*PI/180;
temp=x;i=0 ;
while ( fabs(temp) EX ) ...{
sin += temp;
i += 2;
temp = (-1) * temp*x*x/( (i+1)*(i) );
}
printf("sin(%lf) = %lf ",x,sin);
printf("The number is %d ",i);
return 0;
}
擴(kuò)展資料
C語言編寫一個程序輸出一個正方形的源代碼如下:
#include
int?main()
{
int?i,j,n;
scanf("%d",n);
for(i=0;i? ? ?
printf("*");
else
printf("?");
}
printf("\n");
}
return?0;?
}
首先:程序應(yīng)該這樣改!
#include
#include
main()
{
double
n;
double
b,c;
scanf("%lf",n);
b=sin(n);
c=cos(n);
printf("%.2lf\n%.2lf",b,c);
return
0;
}
其次,這里的n是弧度值,你說的90度應(yīng)該輸入的是pi/2,而不是90,如果希望輸入90的話,那就這樣改!
#include
#include
main()
{
int
s;
double
n,b,c;
scanf("%d",s);
n=3.1415926*(s/180.0);
b=sin(n);
c=cos(n);
printf("%.2lf\n%.2lf",b,c);
return
0;
}
分享名稱:c語言產(chǎn)生正弦波函數(shù) 用c語言編寫正弦函數(shù)的程序
標(biāo)題URL:http://muchs.cn/article24/dojhhje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、標(biāo)簽優(yōu)化、小程序開發(fā)、網(wǎng)站維護(hù)、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)