如何在C#FORMS中编写特定的文本文件行?
例如我在D:\ Desktop \ asd.txt有一个txt文件,我不知道文本文件的内容。
我想将第5行的文字改为冬季, 之后,例如到夏天的第3行。
我怎样才能以最简单的方式做到这一点?谁能给我写一个具体的代码?
答案 0 :(得分:2)
试试这个:
static void bubble(int [] mas)
{
int temp;
for (int i = 0; i < mas.Length; i++)
{
for (int j = 0; j < mas.Length - 1; j++)
if (mas[j] > mas[j + 1])
{
temp = mas[j + 1];
mas[j + 1] = mas[j];
mas[j] = temp;
}
}
foreach (var element in mas)
{
Console.WriteLine("Sorted elements are: {0}", element);
}
}
static void Main(string[] args)
{
int[] mas = new int[5];
Console.WriteLine("Please enter the elements of the array: ");
for (int i = 0; i < 5; i++)
{
mas[i] = Convert.ToInt32(Console.ReadLine());
}
bubble();
}