Minha repetição deveria resultar no valor de 1000 porém, estou recebendo como resultado o valor 500500 sem saber o motivo
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int soma = 0;
for (int i = 1; i <= 1000; i++) {
soma +=i;
}
MessageBox.Show("Final e " + soma);
}
}
}