啊哈c语言答案

打开啊哈C 新建一个程序输出hello world # include <stdio.h> # include <stdlib.h> int main ( ) { printf ( "hello world!\n" ) ; system ( "pause" ) ; return 0 ; }

打开啊哈C
新建一个程序输出hello world

#include <stdio.h>
#include <stdlib.h>
int main()
{
	printf("hello world!\n");
	system("pause");
	return 0;
}

点击保存
点击运行
出现如下窗口:
编译成功
运行结果
在这里插入图片描述

  • 最后感谢啊哈C作者提供这么干净简洁的软件,方便了初学者
知秋君
上一篇 2024-09-10 13:36
下一篇 2024-09-10 13:02

相关推荐