Skip to content

Commit

Permalink
added fancy logo
Browse files Browse the repository at this point in the history
and fancy wording
  • Loading branch information
DarkVader135 authored Apr 21, 2021
1 parent fa50358 commit b36e1f4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ string sentence;
int i=3;
int main () {

cout << ",------. ,--. ,--. ,--------. ,---. ,--. ,--. " << endl;
cout << "| .-. ` `--' ,---. ,---. ,---. ,--.--. ,-| | '--. .--',--,--. ,---. / O ` ,-| | ,-| | ,---. ,--.--." << endl;
cout << "| | ` :,--.( .-' | .--'| .-. || .--'' .-. | | | ' ,-. || .-. | | .-. |' .-. |' .-. || .-. :| .--'" << endl;
cout << "| '--' /| |.-' `)` `--.' '-' '| | ` `-' | | | ` '-' |' '-' ' | | | |` `-' |` `-' |` --.| | " << endl;
cout << "`-------' `--'`----' `---' `---' `--' `---' `--' `--`--'.`- / `--' `--' `---' `---' `----'`--' " << endl;
cout << " `---' " << endl;

cout << "please enter the sentence u wish to add spoiler tags to :" << endl;
getline(cin, sentence);
sentence.insert(0,"||");
int size = sentence.size();
Expand All @@ -18,7 +26,8 @@ int main () {
}

sentence += "||" ;


cout << "results :" << endl;
cout << sentence << endl;
system("pause");
return 0;
Expand Down

0 comments on commit b36e1f4

Please sign in to comment.