大佬们看看,第一次作业,哪个地方错了
#include <stdio.h>#include <math.h>
void main()
{
double x, s;
printf("input number:\n");
scanf("%if", &x);
s = sin(x);
printf("sin of %if is %if\n", x, s);
} %lf
是小写的 L,而不是 i BngThea 发表于 2018-2-1 12:17
%lf
是小写的 L,而不是 i
#include <stdio.h>
#include <math.h>
void main()
{
double x, s;
printf("input number:\n");
scanf("%lf", &x);
s = sin(x);
printf("sin of %lf is %lf\n", x, s);
}这样还是错的
Compiling...
Error spawning cl.exe错误原因 conan12138 发表于 2018-2-1 12:18
#include
#include
代码没错,是你的vc路径设置有点问题
参考:
https://zhidao.baidu.com/question/13693395.html BngThea 发表于 2018-2-1 12:38
代码没错,是你的vc路径设置有点问题
参考:
https://zhidao.baidu.com/question/13693395.html
谢谢
页:
[1]