#include <iostream>

int main()
{
     std::cout << "Merry Christmas Everyone!";
     return 0;
}

Recommended Answers

All 2 Replies

#include <iostream>

int main() {
  for(int i = 0; i < 3; ++i)
    std::cout << "Ho! ";
  return 0;
};
commented: lol +10
#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
using namespace std;

int main(){
 cout << 
"           ___\n         /`   `'.\n        /   _..---;\n        |  /__..._/  .--.-.\n        |.'  e e | ___\\_|/____\n       (_)'--.o.--|    | |    |\n      .-( `-' = `-|____| |____|\n     /  (         |____   ____|\n     |   (        |_   | |  __|\n     |    '-.--';/'/__ | | (  `|\n     |      '.   \\    )"";--`\\ /\n     \\        ;   |--'    `;.-'\n     |`-.__ ..-'--'`;..--" << endl;

 return 0;
}
commented: "E" for effort (: +10
commented: Nice one! +14
commented: Nice +14
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.