hello world
C
#include <stdio.h> int main() { printf("hello world\n"); return 0; }
C++
#include <iostream> int main() { std::cout << "hello world" << std::endl; return 0; }
Python
print('hello world')
Java
public class Hello{ public static void main(String[] args){ System.out.println("hello world!!!"); } }
评论