File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,27 +19,27 @@ public static void Main()
19
19
input = int . Parse ( Console . ReadLine ( ) ) ;
20
20
21
21
// Condition 1.
22
- if ( input <= 0 ) // line 16
22
+ if ( input <= 0 )
23
23
// Input is less than or equal to 0
24
24
Console . WriteLine ( "Exiting..." ) ;
25
25
else
26
26
// Condition 2.
27
- if ( input < 9 ) // line 20
27
+ if ( input < 9 )
28
28
// Input is less than 9
29
29
Console . WriteLine (
30
30
$ "Tic-tac-toe has more than { input } " +
31
31
" maximum turns." ) ;
32
32
else
33
33
// Condition 3.
34
- if ( input > 9 ) // line 26
34
+ if ( input > 9 )
35
35
// Input is greater than 9
36
36
Console . WriteLine (
37
37
$ "Tic-tac-toe has fewer than { input } " +
38
38
" maximum turns." ) ;
39
39
// Condition 4.
40
40
else
41
41
// Input equals 9
42
- Console . WriteLine ( // line 33
42
+ Console . WriteLine (
43
43
"Correct, tic-tac-toe " +
44
44
"has a maximum of 9 turns." ) ;
45
45
#endregion INCLUDE
You can’t perform that action at this time.
0 commit comments