gpt4 book ai didi

c# - 使用 C# 追加文本文件

转载 作者:太空宇宙 更新时间:2023-11-03 19:06:50 30 4
gpt4 key购买 nike

我编写了以下 C# 代码来附加文件。我需要将每个数据存储在一个新行中。但是在输入数据后,我可以在一行中看到它们。

如何修改我的代码以在一行中获取一个输入。

static void Main(string[] args)
{

Console.WriteLine("Please enter the question:");
string question = Console.ReadLine();
File.AppendAllText("question.txt", question);
File.AppendAllText("question.txt", "\n");
Console.WriteLine("Please enter the term to solve");
string term = Console.ReadLine();
File.AppendAllText("question.txt", term);
}

要求的输出-

x+2=10

x

我得到的输出 -

x+2=10x

最佳答案

term 之后添加 + Environment.NewLine。您可以使用 +(plus) "mystring"+ "another String"+ "my last string"= "mystring another String my last string"连接字符串。

static void Main(string[] args)
{

Console.WriteLine("Please enter the question:");
string question = Console.ReadLine();
File.AppendAllText("question.txt", question);
File.AppendAllText("question.txt", "\n");
Console.WriteLine("Please enter the term to solve");
string term = Console.ReadLine();
File.AppendAllText("question.txt", term + Environment.NewLine);
}

关于c# - 使用 C# 追加文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25801748/

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