Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <bitset>
- int main(){
- std::bitset<4> tut; //0000
- int i;
- std::cout << "Please enter the code: " << std::endl;
- std::cin >> i;
- if (i == 1234){
- tut.set(2, 1);
- std::cout << tut << std::endl;
- }
- else
- std::cout << "You're a cunt harry" << std::endl;
- if (tut[2] == 1)
- std::cout << "Fuck off jigger" << std::endl;
- system("Pause");
- tut.reset(2);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement