When is your birthday (game)!?!? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

When is your birthday (game)!?!?

Post your birthday, or another date that has meaning to you. But write it in a programming language you are familiar with. Have it so if someone copied the code, they could actually compile it and see your answer. Lastly, be creative ;)

25th May 2017, 6:20 PM
Robert Bishop
Robert Bishop - avatar
8 Answers
+ 15
function Birthday (m, d) { this.m = m; this. d = d; } var myBirthday = new Birthday(05, 24); console.log("My Birthday is: " + myBirthday.m + " / " + myBirthday.d);
25th May 2017, 6:39 PM
Maz
Maz - avatar
+ 6
Binary 4 Bytes of memory required. 32 bits. 00001011/00001010/00000111 11010011.
26th May 2017, 8:56 AM
Dragon Slayer Xavier
Dragon Slayer Xavier - avatar
+ 5
Brainfuck: ++++[++++>---<]>-.-[--->+<]>--.+++++++++.++.------------.----.---.+[--->+<]>+++.-[-->+<]>--.[-->+<]>+++.[-->+++<]>++..----.+++++++++++.-----------.++++.--..+.
25th May 2017, 6:55 PM
Skayo
Skayo - avatar
+ 5
Here's one that all the languages have to use at some point in the computer: 00001011 00010100 11 20 Nov 20
26th May 2017, 1:21 AM
Zeke Williams
Zeke Williams - avatar
+ 2
C++: #include <iostream> using namespace std; int main() { cout << "My birthday is on 20th of September"; return 0; } HTML: <html> <head><title>My birthday</title></head> <body> <p>"My birthday is on 20th of September"</p> </body> </html>
25th May 2017, 10:16 PM
Илья Карпенко UA
Илья Карпенко UA - avatar
+ 1
This is written in c++! #include <iostream> #include <string> using namespace std; int main() { string hourOfCode = "December 5-11th"; cout << "My favorite date is the Hour of Code " << hourOfCode << endl; return 0; }
25th May 2017, 6:29 PM
Robert Bishop
Robert Bishop - avatar
+ 1
from datetime import date print(date(2015,3,24)) There you go.
26th May 2017, 1:57 AM
Amaras A
Amaras A - avatar
+ 1
javascript: alert( (p = Math.pow, Date(17 * p(10,6) * p(7, 2) * p(3,3) * p(2,4) ) ) ) python: import time time.ctime( 17 * pow(10,3) * pow(7,2) * pow(2,4) )
26th May 2017, 7:05 AM
Nhan Ngo
Nhan Ngo - avatar