样例如下:
C:
#include <stdio.h> int main() { printf("Hello world!!!\n"); return 0; }
C++:
#include <iostream> using namespace std; int main() { cout<<"Hello world!!!"<<endl; return 0; }
Java:
1. public class Main { 2. public static void main(String[] args) { 3. System.out.println("Hello world!!!"); 4. } 5. }
Python:
print("Hello world!!!")
JavaScript:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>JS简单学习</title> </head> <body> <script type="text/javascript"> document.write("Hello World!!!"); </script> </body> </html>