C, C++, Java, HTML

Hello world (C++)


#include <iostream> // per std::cout e std::endlusing namespace std;int main(){   cout << "Hello World!" << endl;    return 0;}