Skip to content

Commit

Permalink
fixed some stuff to make the line clearer
Browse files Browse the repository at this point in the history
and easier to to copy stuff
  • Loading branch information
DarkVader135 authored Apr 21, 2021
1 parent b36e1f4 commit 534c04a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ using namespace std; // spoiler tag programe
string sentence;
int i=3;
int main () {

cout << ",------. ,--. ,--. ,--------. ,---. ,--. ,--. " << endl;
cout << "| .-. ` `--' ,---. ,---. ,---. ,--.--. ,-| | '--. .--',--,--. ,---. / O ` ,-| | ,-| | ,---. ,--.--." << endl;
cout << "| | ` :,--.( .-' | .--'| .-. || .--'' .-. | | | ' ,-. || .-. | | .-. |' .-. |' .-. || .-. :| .--'" << endl;
Expand All @@ -15,6 +15,9 @@ int main () {

cout << "please enter the sentence u wish to add spoiler tags to :" << endl;
getline(cin, sentence);

cout << " " << endl;

sentence.insert(0,"||");
int size = sentence.size();

Expand All @@ -28,7 +31,10 @@ int main () {
sentence += "||" ;

cout << "results :" << endl;
cout << sentence << endl;
cout << sentence ;

cout << " " << endl;

system("pause");
return 0;
}

0 comments on commit 534c04a

Please sign in to comment.