ZacharyPatten
ZacharyPatten
CC#
Created by clever_cottonmouth on 3/28/2024 in #help
Not able to debug
sure
4 replies
CC#
Created by clever_cottonmouth on 3/28/2024 in #help
Not able to debug
that is not enough information for us to help. please provide more information
4 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
as mentioned if you want examples of using arrow keys in the console just ask. i have lots of examples
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
---- in terms of your code, there are a bunch of ways to write it. here is another:
for (char y = '8'; y >= '1'; y--)
{
for (char x = 'A'; x <= 'H'; x++)
{
Console.Write($" {x}{y}");
}
Console.WriteLine();
}
for (char y = '8'; y >= '1'; y--)
{
for (char x = 'A'; x <= 'H'; x++)
{
Console.Write($" {x}{y}");
}
Console.WriteLine();
}
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
there is the same content from the screenshot as text
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.

Checkers

╔═══════════════════╗
8 ║ · ◙ · ◙ · ◙ · ◙ ║ ○ = Black
7 ║ ◙ · ◙ · ◙ · ◙ · ║ ☺ = Black King
6 ║ · ◙ · ◙ · ◙ · ◙ ║ ◙ = White
5 ║ · · · · · · · · ║ ☻ = White King
4 ║ · · · · · · · · ║
3 ║ ○ ·[○]· ○ · ○ · ║ Taken:
2 ║ · ○ · ○ · ○ · ○ ║ 0 x ◙
1 ║ ○ · ○ · ○ · ○ · ║ 0 x ○
╚═══════════════════╝
A B C D E F G H

Black's turn

Checkers

╔═══════════════════╗
8 ║ · ◙ · ◙ · ◙ · ◙ ║ ○ = Black
7 ║ ◙ · ◙ · ◙ · ◙ · ║ ☺ = Black King
6 ║ · ◙ · ◙ · ◙ · ◙ ║ ◙ = White
5 ║ · · · · · · · · ║ ☻ = White King
4 ║ · · · · · · · · ║
3 ║ ○ ·[○]· ○ · ○ · ║ Taken:
2 ║ · ○ · ○ · ○ · ○ ║ 0 x ◙
1 ║ ○ · ○ · ○ · ○ · ║ 0 x ○
╚═══════════════════╝
A B C D E F G H

Black's turn
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
If you would like a link to that checkers example just ask 🙂
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
rather than having to type "A3" or "D5"
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
here is an example of a console checkers game, and you use the arrow keys to move the [ ] cursor around
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
No description
19 replies
CC#
Created by Nicolas Matheisen on 3/15/2024 in #help
✅ Hey I am a beginner coder and lf some tipps to write clean code.
for example...
19 replies