0%
Java
1 2 3 4 5
| public class HelloWorld{ public static void main(String[] arg){ System.out.print("Hello World!"); } }
|
C
1 2 3 4 5
| #include<stdio.h> int main() { printf("Hello World!"); }
|
C++
1 2 3 4 5 6 7
| #include <iostream> using namespace std; int main() { cout << "Hello, world!" << "\n"; return 0; }
|
Python