Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // my program //
- #include <iostream>
- #include <fstream >
- using namespace std;
- int x;
- string name;
- bool omg() {
- for (x = 0; x < 50; x++) while(true){
- ofstream fuckyou;
- fuckyou.open ("fuckyou.txt", ios::app);
- fuckyou << "Fuck you " << name;
- }
- cin.get();
- return 0;
- }
- int main(){
- cout << "what the fuck is your name?";
- cin >> name;
- if (name == "Lawrence") cout << "Access Granted!";
- else if (name != "Lawrence") for (x = 0; x < 10; x++ ) cout << "\aFuck you " << name << endl;
- omg();
- cin.get();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment