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