gpt4 book ai didi

C# 在运行循环时将 int 数字添加到列表

转载 作者:行者123 更新时间:2023-11-30 19:56:11 25 4
gpt4 key购买 nike

我已尽力在标题中表达要点,但基本上我想做的是在运行循环时将某些项目添加到列表中,这样我就不必手动将它们放入 if 语句中.让我举个例子,以便我能正确解释。

例子:-

我需要的是:- 第一个数字是 500,它在索引 0 中,然后我想要一个循环将 150 添加到最后生成的数字,这样 int 列表看起来像这样,

index 0 = 500
index 1 = 650
index 2 = 800
index 3 = 950

重复此操作,直到说出最后一个数字为 2,000,000

现在我相信运行一个循环并根据条件进行循环会很简单,但我似乎只能弄清楚运行一个将增加 1 中的值的循环。

希望我已经解释得足够好

问候,中号

最佳答案

Now I believe that this would be simple to run a loop and base it on conditions but I can only seem to figure out to run a loop that will increment the value in 1.

这不是真的,你可以随意调整迭代器的增量。

var numbers = new List<int>();
for(int i=500; i<=2000000; i+=150)
{
numbers.Add(i);
}

有关这方面的更多信息,请查看here .

关于C# 在运行循环时将 int 数字添加到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34559177/

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