C、C#、C++,三种语言的简单区分
一、C语言 #include <stdio.h> int main() { /* 我的第一个 C 程序 */ printf("Hello, World! \n"); return 0; } 二、C# using System; namespace HelloWorldApplication { /* 类名为 HelloWorld */ class HelloWorld { /* main函数 */ static void Main(string[] args) { /* 我的第一个 C# 程序 */ Console.WriteLine("Hello World!"); Console.ReadKey(); } } } 三、C++ #include <iostream> using namespace std; int main() { cout << "Hello, world!" << endl; return 0; } 来源: CSDN 作者: CaoMei_HuaCha 链接: https://blog.csdn.net/CaoMei_HuaCha/article/details/104514982