+ 1

Want a project in c++

Hi,can someone give me a project in c++.

19th Dec 2016, 4:27 PM
DIGITAL
DIGITAL - avatar
3 Answers
+ 3
1. Tic-Tac-Toe 2. Snake game 3. Sudoku Solver 4. Othello 5. Library Management System
19th Dec 2016, 6:24 PM
Caffeinated Gamer YT
Caffeinated Gamer YT - avatar
+ 2
/*This is the most simple program I made for a bit of fun...im not a pro....*/ #include <iostream> using namespace std; int main() { int age; cin>>age; if (age >=0 && age <= 10) { cout<< "This is not your place."; } if (age >=11 && age <=18) { cout<< "Noobs like me can become a pro here...\nWelcome to sololearn.\nGet started!"; } if (age >=19 && age <=30) { cout<< "Hey... Now you should have become a pro...\nGet started with hacking and stuffs\nAnd yea... Keep an eye on the deepnet! ;)"; } if (age >=31 && age <=59) { cout<< "How many websites have you defaced?\nEarned enough Bitcoins?\nShare some knowledge with the code lovers."; } if (age >=60 && age <= 100) { cout<< "Codings are memories now...\nThose sweet moments of browsing deepnet, earning bitcoins, writing scripts & exploits and many more..."; } if (age >=101) { cout<< "You cannot be so old...\nYour not a Programmer/Hacker then...-.-"; } return 0; }
19th Dec 2016, 4:39 PM
DEF4LT_
DEF4LT_ - avatar