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