Курсовая работа: Калькулятор для матриць
this->Cursor = System::Windows::Forms::Cursors::Hand;
this->Menu = this->mainMenu1;
this->Name = S"Form1";
this->Text = S"MATRIX CALCULATOR";
this->Load += new System::EventHandler(this, Form1_Load);
this->ResumeLayout(false);
}
private: System::Void Form1_Load(System::Object * sender, System::EventArgs * e)
{
}
private: System::Void textBox3_TextChanged(System::Object * sender, System::EventArgs * e){}
private: System::Void textBox6_TextChanged(System::Object * sender, System::EventArgs * e){}
private: System::Void button1_Click(System::Object * sender, System::EventArgs * e)
{
int i,j,l;
double **A,**B,**C,smm;
int n=Convert::ToInt32(textBox4->Text);
A = new double*[n];
B = new double*[n];
C = new double*[n];
for(i=0;i<n;i++)
{
A[i] = new double[n];
B[i] = new double[n];
C[i] = new double[n];
}
{
GET_ARRAY(textBox1->Text,A,n);
GET_ARRAY(textBox2->Text,B,n);