So I have problem... I need to build program with C# windows form, and calculate with texbox1 and textbox2 factorials and show even numbers in richtextbox, and use FOR cycle, I have builded this solution but it gives me only one number.....It is mind****.... If you know what I mean... Any sugestions?
private void button1_Click(object sender, EventArgs e)
{
int x = Convert.ToInt32(textBox1.Text);
int y = Convert.ToInt32(textBox2.Text);
int fact = 1;
for (int i = x; i<=y; i++)
{
fact = fact * y;
}
richTextBox1.Text = fact.ToString();
}
Well In mind I have build this one too, what do you think about it? And maby someone can tell me how to use it?
for (int i = X; i <= Y; i++)
if (i % 2 == 0)
{
fakt = 1;
for (int j = i; j > 0; j--)
fakt = fakt * j;
}
Let's start by defining our factorial function. You said it had to be a for loop, so:
Now, you said you wanted the textbox to have the format:
Let's start by making a function that will print the column headers:
And, lastly, our click event handler: