欢迎访问服务器技术网-www.fuwuqijishu.com

今天学编程了 大家看看我错哪了

程序设计 fuwuqijishu 2年前 (2022-10-01) 11次浏览 0个评论 扫描二维码

关于是个三角函数的编程 求sinx he cosx的
#includ “math.h”
main()
{
int a,b,x;
printf(“please enter one float \”);
scanf(“%f”,&d);
a=sinx;
b=cosx; ~~~~就是这个地方错了 但不知道错哪了
printf(“sinx=%f”,a;”cosx=%f”,b);
}
的问题

/*
程序错的地方都有标注,好好看看吧。
*/
#include “stdio.h” /*1.要用printf函数就要加上这个头文件*/
#include “math.h”
main()
{
double a,b,x; /*2.求sin,cos的时候最好用double*/
printf(“please enter one float number:\n”);
scanf(“%f”,&x); /*3.&d应为&x,否则就要在声明中加上double d;*/
a=sin(x); /*4.sinx不对,sin是函数,应该是sin(x)*/
b=cos(x);/*5.cosx不对,cos是函数,应该是cos(x)*/
printf(“sinx=%f cosx=%f”,a,b); /*6.正确的输出格式应该是这样的*/
}

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2420.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900