第17使徒 发表于 2022-3-31 17:49:04

第一个代码报错了

#include <stdio.h>
void main()
{
printf("hellow word!") ;
}

大马强 发表于 2022-3-31 17:49:34


#include <stdio.h>
void main()
{
      printf("hellow word!") ; // 英文的;
}

isdkz 发表于 2022-3-31 17:50:02

你用了中文分号。

#include <stdio.h>
void main()
{
printf("hellow word!");      # 这里改回英文分号
}

第17使徒 发表于 2022-3-31 17:50:31

isdkz 发表于 2022-3-31 17:50
你用了中文分号。

谢大佬{:5_108:}

第17使徒 发表于 2022-3-31 17:51:04

大马强 发表于 2022-3-31 17:49


谢大佬{:7_112:}
页: [1]
查看完整版本: 第一个代码报错了