c语言经典例子:写出“hello world”

c语言经典例子:写出“hello world”

学习一门新程序设计语言的唯一途径就是使用它编写程序。

对于所有语言的初学者来说,编写的第一个程序几乎都是相同的,即:
请打印出下列内容:“hello world”

#include /* 包含标准库的信息 */
main() /* 定义名为main的函数,它不接受参数值 */
{ /* main函数的语句都被括在花括号中 */
printf("hello world\n"); /* main函数调用库函数printf以显示字符序列,其中\n代表换行符*/
}

其他c类语言也能显示“hello world”:

C语言:

#include

int main() {
printf("hello world\n");
return 0;
}

C++语言:

#include
using namespace std;

int main() {
cout << "Hello, world!" << endl;
return 0;
}

JAVA语言:

public class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello World!") ;
}
}

C#语言:

class HelloWorldApp {
public static void Main() {
System.Console.WriteLine("Hello, world!");
}
}

Related Posts