标签:不同 namespace adl ati sys eric ext std 编程
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadLine();
}
}
}
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
std::cin.get();
return 0;
}
#include <stdio.h>
int main()
{
printf("Hello World!");
system("pause");
return 0;
}
class HelloWorld{
public static void main(String[] arr){
System.out.println("Hello World!");
}
}
print "Hello World!"
标签:不同 namespace adl ati sys eric ext std 编程
原文地址:https://www.cnblogs.com/fenggwsx/p/13192446.html