请问这个按照鱼大触编写的代码问题在哪里?
#include <stdio.h>#include <math.h>
void main()
{
double x, s;
printf("请输入一个数字按回车:\n");
scanf("%lf". &x);
s = sin(x);
printf("sin of %lf is %lf\n". x. s);
}
逗号问题,你看我写的:
#include <stdio.h>
#include <math.h>
void main()
{
double x, s;
printf("请输入一个数字按回车:\n");
scanf("%lf", &x);
s = sin(x);
printf("sin of %lf is %lf\n", x, s);
} 顶一个呀!!
#include <stdio.h>
#include <math.h>
void main()
{
double x, s;
printf("请输入一个数字按回车:\n");
scanf("%lf",&x);
s = sin(x);
printf("sin of %lf is %lf\n", x,s);
}
你的错误都是一些小问题,注意下就好了 顶一个呀!!
页:
[1]