皓月冷星 发表于 2019-3-11 20:34:13

新手教学时遇到的问题

#inciud <stdio.h>
#inciud <math.h>

void main()
{
        double x, s;

        printf("input number:\n")
    scanf(%If", &x0;
        s=sin(x);
        printf(sin of %If is %If\n", x, s);
}

hello world.c
c:\users\hasee\desktop\收藏\hello world\hello world.c(1) : fatal error C1021: invalid preprocessor command 'inciud'
执行 cl.exe 时出错.

hello world.exe - 1 error(s), 0 warning(s)

jackz007 发表于 2019-3-11 20:37:40

本帖最后由 jackz007 于 2019-3-11 20:46 编辑

       错误太多,就不一一列举了,希望楼主用心学,粗心可是程序员的大敌!
#include <stdio.h>
#include <math.h>

main(void)
{
      double x , s                      ;
      printf("input number: ")          ;
      scanf("%f" , & x)               ;
      s = sin(x)                        ;
      printf("sin of %f is %f\n", x, s) ;
}

皓月冷星 发表于 2019-3-11 20:49:29

jackz007 发表于 2019-3-11 20:37
错误太多,就不一一列举了,希望楼主用心学,粗心可是程序员的大敌!

谢谢
页: [1]
查看完整版本: 新手教学时遇到的问题