using System.Collections.Generic;
using System.ComponentModel;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp6
double m = Math.Pow(getx, gety);
for (int i = 1; i <= getx; i++)
public partial class Form4 : Form
private void Form4_Load(object sender, EventArgs e)
Algoritm AL = new Algoritm();
AL.getx = double.Parse(textBox1.Text);
AL.gety = double.Parse(textBox2.Text);
textBox3.Text = Convert.ToString(AL.pofa());