C语言刚刚开始学出了问题,求助
#include<math.h>+#include<stadio.h>
main()
{
double x,s
print("input number")
sanf("%f",&x)
s+sin(x)
printf("sine of %if is %if\n",x,s);
}
然后编译出现以下问题,求助,谢谢!
C:\Users\14561\Desktop\Hello World\1.cpp(4) : error C2143: syntax error : missing ';' before '{'
C:\Users\14561\Desktop\Hello World\1.cpp(4) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错. 本帖最后由 zltzlt 于 2019-9-22 13:22 编辑
有一点错别字
#include<math.h>
#include<stdio.h>
int main()
{
double x,s;
printf("input number");
scanf("%f",&x);
s+=sin(x);
printf("sine of %if is %if\n",x,s);
return 0;
} zltzlt 发表于 2019-9-22 13:20
有一点错别字
还是不行啊! HXJ9913 发表于 2019-9-22 13:25
还是不行啊!
错误信息? zltzlt 发表于 2019-9-22 13:20
有一点错别字
#include<math.h>
+#include<stadio.h>
int main()
{
double x,s
print("input number")
scanf("%f",&x)
s=sin(x)
printf("sine of %if is %if\n",x,s);
return 0
} HXJ9913 发表于 2019-9-22 13:26
? HXJ9913 发表于 2019-9-22 13:26
这个也不行。
第二行的+不能删除,删除以后找不到stadio.h文件,按照您说的代码复制了,编译结果还是一样。 zltzlt 发表于 2019-9-22 13:20
有一点错别字
这个也不行。
第二行的+不能删除,删除以后找不到stadio.h文件,按照您说的代码复制了,编译结果还是一样。
HXJ9913 发表于 2019-9-22 13:28
这个也不行。
第二行的+不能删除,删除以后找不到stadio.h文件,按照您说的代码复制了,编译结果还是一 ...
应该是 stdio.h 吧 zltzlt 发表于 2019-9-22 13:27
?
就是按照您的代码复制了,编译的时候结果还是一样。 zltzlt 发表于 2019-9-22 13:29
应该是 stdio.h 吧
是的,这个问题已经解决,在第二行前面加一个+就行了。但是其他的部分编译还是一直有错误提示 HXJ9913 发表于 2019-9-22 13:32
是的,这个问题已经解决,在第二行前面加一个+就行了。但是其他的部分编译还是一直有错误提示
错误提示是什么 zltzlt 发表于 2019-9-22 13:34
错误提示是什么
C:\Users\14561\Desktop\Hello World\1.cpp(4) : error C2143: syntax error : missing ';' before '{'
C:\Users\14561\Desktop\Hello World\1.cpp(4) : error C2447: missing function header (old-style formal list?) HXJ9913 发表于 2019-9-22 13:35
C:%users\14561\Desktop\Hello World\1.cpp(4) : error C2143: syntax error : missing ';' before '{'
...
我是问用我的代码的错误提示是什么 zltzlt 发表于 2019-9-22 13:37
我是问用我的代码的错误提示是什么
C:\Users\14561\Desktop\Hello World\1.cpp(2) : error C2014: preprocessor command must start as first nonwhite space
C:\Users\14561\Desktop\Hello World\1.cpp(4) : error C2143: syntax error : missing ';' before '{'
C:\Users\14561\Desktop\Hello World\1.cpp(4) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错. HXJ9913 发表于 2019-9-22 13:40
C:%users\14561\Desktop\Hello World\1.cpp(2) : error C2014: preprocessor command must start as firs ...
大佬,我刚刚一直的试,前几次不行但是现在又可以了,操作是一样的,可能我马虎了,麻烦您了。真的很感谢您的耐心解答! #include<stdio.h>
#include<math.h>
int main()
{
double x,s;
printf("input number");
scanf("%f",&x);
s+=sin(x);
printf("sine of %if is %if\n",x,s);
return 0;
} zltzlt 发表于 2019-9-22 13:43
谢谢您了,感谢您的耐心指导,谢谢!刚刚试了可以了,谢谢! HXJ9913 发表于 2019-9-22 13:32
是的,这个问题已经解决,在第二行前面加一个+就行了。但是其他的部分编译还是一直有错误提示
你用的啥啊?Visual Studio 2019前面从来没有+号 永恒的蓝色梦想 发表于 2019-9-22 14:36
你用的啥啊?Visual Studio 2019前面从来没有+号
vc 6.0
页:
[1]
2