我正在尝试制作一个显示数字的程序:
1, 10 +30
2, 40 (the scale goes up in this pattern by adding 20 to the last number added)
3, 90 +50
4, 160
5, 250 +70
到目前为止,我有这个代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace Myloop
{
class Program
{
static void Main(string[] args)
{
FileStream filestream = new FileStream("loopdata.csv", FileMode.Create);
var streamwriter = new StreamWriter(filestream);
streamwriter.AutoFlush = true;
Console.SetOut(streamwriter);
Console.SetError(streamwriter);
int forloop;
for (forloop = 1; forloop < 21; forloop++)
Console.WriteLine(forloop);
Console.ReadLine();
}
}
}
这显示了第一个数字序列 1 - 20,但是任何人都可以给我任何指导如何在控制台应用程序中执行它旁边的另一个序列吗?以及如何将这些输出到 .csv 文件,因为到目前为止我所拥有的信息并未出现在 .csv 文件中。