-破晓……… 发表于 2013-10-4 09:48:23

我的Hello worid编好了不能运行怎么办?

void main()
{
        printf("世界,您好!\n");
}
也没错啊!!!!!!!求高手帮助:cry:cry:cry

牡丹花下死做鬼 发表于 2013-10-4 10:54:40

#include <stdio.h>
#include<windows.h>

int main()
{
        printf("Hellow World!\n");

        system("pause");

        return 0;
}

淡雅夏伤 发表于 2013-10-4 11:20:35

#include<stdio.h>

int main()

{printf("Hello,World!");

return 0;

}

pzhccy 发表于 2013-10-4 11:37:53

#include <stdio.h>
#include<stdlib.h>

int main()
{
        printf("Hellow World!\n");

        system("pause");

        return 0;
}试一下代码是怎么发的:lol:

怡静 发表于 2013-10-5 14:19:04

看懂了吧,哈哈!

小道十八 发表于 2013-10-5 15:54:29

#include<stdio.h>
void main()
{
   printf("你好!世界!\n");
}

-破晓……… 发表于 2013-10-5 20:47:10

嘿嘿看懂了谢谢哈
页: [1]
查看完整版本: 我的Hello worid编好了不能运行怎么办?