HXJ9913 发表于 2019-9-22 13:18:54

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:20:21

本帖最后由 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;
}

HXJ9913 发表于 2019-9-22 13:25:49

zltzlt 发表于 2019-9-22 13:20
有一点错别字

还是不行啊!

zltzlt 发表于 2019-9-22 13:26:04

HXJ9913 发表于 2019-9-22 13:25
还是不行啊!

错误信息?

HXJ9913 发表于 2019-9-22 13:26:28

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

}

zltzlt 发表于 2019-9-22 13:27:21

HXJ9913 发表于 2019-9-22 13:26


HXJ9913 发表于 2019-9-22 13:28:08

HXJ9913 发表于 2019-9-22 13:26


这个也不行。
第二行的+不能删除,删除以后找不到stadio.h文件,按照您说的代码复制了,编译结果还是一样。

HXJ9913 发表于 2019-9-22 13:28:39

zltzlt 发表于 2019-9-22 13:20
有一点错别字

这个也不行。
第二行的+不能删除,删除以后找不到stadio.h文件,按照您说的代码复制了,编译结果还是一样。

zltzlt 发表于 2019-9-22 13:29:10

HXJ9913 发表于 2019-9-22 13:28
这个也不行。
第二行的+不能删除,删除以后找不到stadio.h文件,按照您说的代码复制了,编译结果还是一 ...

应该是 stdio.h 吧

HXJ9913 发表于 2019-9-22 13:30:16

zltzlt 发表于 2019-9-22 13:27


就是按照您的代码复制了,编译的时候结果还是一样。

HXJ9913 发表于 2019-9-22 13:32:41

zltzlt 发表于 2019-9-22 13:29
应该是 stdio.h 吧

是的,这个问题已经解决,在第二行前面加一个+就行了。但是其他的部分编译还是一直有错误提示

zltzlt 发表于 2019-9-22 13:34:11

HXJ9913 发表于 2019-9-22 13:32
是的,这个问题已经解决,在第二行前面加一个+就行了。但是其他的部分编译还是一直有错误提示

错误提示是什么

HXJ9913 发表于 2019-9-22 13:35:53

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?)

zltzlt 发表于 2019-9-22 13:37:01

HXJ9913 发表于 2019-9-22 13:35
C:%users\14561\Desktop\Hello World\1.cpp(4) : error C2143: syntax error : missing ';' before '{'
...

我是问用我的代码的错误提示是什么

HXJ9913 发表于 2019-9-22 13:40:23

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:42:43

HXJ9913 发表于 2019-9-22 13:40
C:%users\14561\Desktop\Hello World\1.cpp(2) : error C2014: preprocessor command must start as firs ...

大佬,我刚刚一直的试,前几次不行但是现在又可以了,操作是一样的,可能我马虎了,麻烦您了。真的很感谢您的耐心解答!

zltzlt 发表于 2019-9-22 13:43:01

#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;
}

HXJ9913 发表于 2019-9-22 13:47:10

zltzlt 发表于 2019-9-22 13:43


谢谢您了,感谢您的耐心指导,谢谢!刚刚试了可以了,谢谢!

永恒的蓝色梦想 发表于 2019-9-22 14:36:34

HXJ9913 发表于 2019-9-22 13:32
是的,这个问题已经解决,在第二行前面加一个+就行了。但是其他的部分编译还是一直有错误提示

你用的啥啊?Visual Studio 2019前面从来没有+号

HXJ9913 发表于 2019-9-24 22:49:24

永恒的蓝色梦想 发表于 2019-9-22 14:36
你用的啥啊?Visual Studio 2019前面从来没有+号

vc 6.0
页: [1] 2
查看完整版本: C语言刚刚开始学出了问题,求助