搜索
查看: 705|回复: 5

哪里错了

[复制链接]
 楼主| 发表于 2018-8-4 09:41:34 | 显示全部楼层 |阅读模式
5啊哈币
#include
#include
int main()
{
    printf("hello world!")
    return 0;
}

发表于 2018-8-4 19:35:52 | 显示全部楼层
printf那一行没有分号
发表于 2018-8-7 13:37:02 | 显示全部楼层
#include <stdio.h>
int main()
{
    printf("hello world!");
    system("pause");
    return 0;
}
printf语句后面少了分号,没有包含头文件,还少了暂停语句
发表于 2018-11-28 20:47:02 | 显示全部楼层
#include <stdio.h>
#include <stdlib.h>
int main()
{
        printf("hello world!");
        system("pause");
        return 0;
}


发表于 2019-2-24 19:05:31 | 显示全部楼层
printf("hello world");
发表于 2019-7-28 20:08:30 | 显示全部楼层
  1. #include <stdio.h>
  2. int main()
  3. {
  4. printf("Hello World!");
  5. system("pause");
  6. return 0;
  7. }
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

广播台
特别关注
快速回复 返回顶部 返回列表