czx995818253 发表于 2014-6-27 20:09:11

急 啊 就是光出错




#include <stdio.h>

main()
{
        printf("hello world!/n");
}


czx995818253 发表于 2014-6-27 20:20:21

怎么没人啊...

laiwenyou 发表于 2014-6-27 21:43:06

void main()
{
printf("hello world\n");
}

main()没指定返回类型吧...好久没碰过....你试试

laiwenyou 发表于 2014-6-27 21:45:45

public static void main(string args)应该是这样写

大黑鱼 发表于 2014-6-27 21:46:57

#include <stdio.h>
int main(void)
{
      printf("hallo world \n");


      return 0;
}

欣欣celin 发表于 2014-6-27 21:48:09

laiwenyou 发表于 2014-6-27 21:43 static/image/common/back.gif
void main()
{
printf("hello world\n");


就是这样嘀{:7_182:}

saitosai1234 发表于 2014-6-27 21:58:08

哈哈,我也经常犯这种错误的。:lol:

wbwchina 发表于 2014-6-27 22:03:01

哈哈哈!初学都这样!

屌得不可开交 发表于 2014-6-27 22:22:57

include<stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}

小布丁 发表于 2014-6-27 22:40:54

laiwenyou 发表于 2014-6-27 21:45 static/image/common/back.gif
public static void main(string args)应该是这样写

这是java的写法吧。。。貌似还有点小错误

czx995818253 发表于 2014-6-28 10:12:00

大黑鱼 发表于 2014-6-27 21:46 static/image/common/back.gif
#include
int main(void)
{


格式天下 发表于 2014-6-28 10:52:13

laiwenyou 发表于 2014-6-27 21:45 static/image/common/back.gif
public static void main(string args)应该是这样写

public static void main(String[] args){}   java都写错

大黑鱼 发表于 2014-6-28 12:22:46

czx995818253 发表于 2014-6-28 10:12 static/image/common/back.gif


我的没问题啊!编译器的问题吧!

Mikel 发表于 2014-6-28 12:23:12

/n。。 n\          \n \n \n \n

风之残月 发表于 2014-6-29 13:41:32

试试这个
#include <stdio.h>

int main()
{
      printf("hello world!\n");
      return 0;
}

还不行的话看是否你的工程建立错误,或者环境变量设置错误

laiwenyou 发表于 2014-7-10 20:37:59

小布丁 发表于 2014-6-27 22:40
这是java的写法吧。。。貌似还有点小错误

....,写错了
页: [1]
查看完整版本: 急 啊 就是光出错