试图解决欧拉项目#1的问题
本文关键字:问题 项目 解决 | 更新日期: 2023-09-27 18:08:27
我在尝试制作一个小应用程序来解决Project Euler问题#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()
语句的作用域。我的猜测是,当你认为它应该运行的时候,它没有运行。