急 啊 就是光出错
#include <stdio.h>
main()
{
printf("hello world!/n");
}
怎么没人啊... void main()
{
printf("hello world\n");
}
main()没指定返回类型吧...好久没碰过....你试试 public static void main(string args)应该是这样写 #include <stdio.h>
int main(void)
{
printf("hallo world \n");
return 0;
} laiwenyou 发表于 2014-6-27 21:43 static/image/common/back.gif
void main()
{
printf("hello world\n");
就是这样嘀{:7_182:} 哈哈,我也经常犯这种错误的。:lol: 哈哈哈!初学都这样! include<stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
} laiwenyou 发表于 2014-6-27 21:45 static/image/common/back.gif
public static void main(string args)应该是这样写
这是java的写法吧。。。貌似还有点小错误 大黑鱼 发表于 2014-6-27 21:46 static/image/common/back.gif
#include
int main(void)
{
laiwenyou 发表于 2014-6-27 21:45 static/image/common/back.gif
public static void main(string args)应该是这样写
public static void main(String[] args){} java都写错 czx995818253 发表于 2014-6-28 10:12 static/image/common/back.gif
我的没问题啊!编译器的问题吧!
/n。。 n\ \n \n \n \n 试试这个
#include <stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}
还不行的话看是否你的工程建立错误,或者环境变量设置错误 小布丁 发表于 2014-6-27 22:40
这是java的写法吧。。。貌似还有点小错误
....,写错了
页:
[1]