Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
453 views
in Technique[技术] by (71.8m points)

operators - How to visually print letters in the console in C#?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There's like a thousand ways you could do that. If you are feeling fancy you could have a two dimensional array with zeros and ones (or true and false) that would describe the letters, and then write a function to loop over it printing whitespace if it encounters a zero/false and the letter when it encounters one/true. Or you could just have the exact string value of the letter saved in a variable and just print it as-is. Anyways there's not much more to that task than printing letters, whitespaces and newlines.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...