diff --git a/c/sourcecode/朱森森带领的奇妙冒险/C语言程序设计入门过关题集-顺序结构/HelloWorld.cpp b/c/sourcecode/朱森森带领的奇妙冒险/C语言程序设计入门过关题集-顺序结构/HelloWorld.cpp new file mode 100644 index 0000000..761fa73 --- /dev/null +++ b/c/sourcecode/朱森森带领的奇妙冒险/C语言程序设计入门过关题集-顺序结构/HelloWorld.cpp @@ -0,0 +1,8 @@ +#include +#include + +int main(void) +{ + printf("Hello World!"); + return 0; +}