Skip to content

Commit

Permalink
Fix code block view
Browse files Browse the repository at this point in the history
  • Loading branch information
emreozdil authored Oct 25, 2018
1 parent 1cc72a9 commit e1cc006
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ASSIGNMENTS/rockPaperScissor.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Remember the rules:
#include <iostream>

using namespace std;

``` C
int main()
{
char k1, k2;
Expand All @@ -25,3 +25,4 @@ int main()
else if ((k1 == 'R' && k2 == 'S') || (k1 == 'S' && k2 == 'P') || (k1 == 'P' && k2 == 'R')) cout << "Congrat player 1, you won !!!";
else cout << "Congrat player 2, you won !!!";
}
```

0 comments on commit e1cc006

Please sign in to comment.