gpt4 book ai didi

c# - 为数组中字符串的每个字母输出一个 _ (hangman)

转载 作者:行者123 更新时间:2023-11-30 23:32:57 24 4
gpt4 key购买 nike

    public void Dashes()
{
for (int i = 0; i < SelectedWord.Length; i++)
console.WriteLine("_");

}

这是我唯一能想到的,每当我要运行它时,它都会把它放在所有单独的行上,而我希望它在 1 行上

最佳答案

public void Dashes()
{
for (int i = 0; i < SelectedWord.Length; i++)
console.Write("_");

}

感谢@Grant Winney

关于c# - 为数组中字符串的每个字母输出一个 _ (hangman),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34100396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com