gpt4 book ai didi

c# - 试图解决欧拉计划 #1 的问题

转载 作者:太空狗 更新时间:2023-10-30 01:06:19 25 4
gpt4 key购买 nike

我在尝试制作一个小应用程序来解决问题时遇到了问题 Project Euler Problem #1 .

每当我尝试运行它时,它都会返回 0,而不是 233168。

我不一定要寻找绝对答案,只是一些提示,我正在努力学习。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int x;
List<int> listOne = new List<int>();
for (x = 1; x < 1000; ++x)
{
if(x%3 == 0 || x%5 == 0)
{
listOne.Add(x);
}
Console.WriteLine(listOne.Sum());
Console.ReadLine();
}
}
}
}

最佳答案

为了帮助您学习,我不会提供确切的答案。

查看您的 Console.WriteLine() 语句的范围。我的猜测是它没有在您认为应该运行的时候运行。

关于c# - 试图解决欧拉计划 #1 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15916712/

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