+ 1
Want a project in c++
Hi,can someone give me a project in c++.
3 Answers
+ 3
1. Tic-Tac-Toe
2. Snake game
3. Sudoku Solver
4. Othello
5. Library Management System
+ 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;
}



