
#پایتون تمرین پایتون حل معادله ی خطی با استفاده از ماتریس کدنویس:بیسوادسازنده:گیم اور بلاگجواب دستگاه معادله ی فوق را بدست آورید. حل : این برنامش : #786#@gameoverblog#Solving a LINEAR SYSTEM of #EQU...
ادامه مطلب
http://opizo.com/WVytzp...
ادامه مطلب
gameover private chaelلینک کانال خصوصی گیم اورhttps://t.me/gameoverblogهر پکیجی که توان خریدش ندارید رایگان.اگه مشکل مالی ندارید حمایت کنید.-اعمالی که انجام می دهیم، اگر ذره ای و مثقالی باشد، به خودمان باز می گردد و بازتابش آنها را در زندگی خواهیم دید.زلزال۷او کسی است که (روح) شما را در شب (به هنگ...
ادامه مطلب
gameover.blog.ir #include <iostream> using namespace std; void take_data(int a[][10], int b[][10], int r1,int c1, int r2, int c2); void multiplication(int a[][10],int b[][10],int mult[][10],int r1,int c1,int r2,int c2); void display(int mult[][10], int r1, int c2); int main() { int a[10][10], b[10][10], mult[10][10], r1, c1, r2, c2, i, j, k; cout << "Enter rows and columns for first matrix: "; cin >> r1 >> c1; cout << "Enter rows and columns for second matrix: "; cin >> r2 >> c2; /* If colum of first matrix in not equal to row of second matrix, asking user to enter the size of matrix again. */ while (c1!=r2) { ...
ادامه مطلب
gameover.blog.ir Transpose Matrix یا ماتریس ترانهاده به ماتریسی می گیم که جای سطر و ستون ماتریس اول رو عوض کنیم. مثل شکل های زیر: #include <iostream> using namespace std; int main() { int a[10][10], trans[10][10], r, c, i, j; cout << "Enter rows and columns of matrix: "; cin >> r >> c; /* Storing element of matrix entered by user in array a[][]. */ cout << endl << "Enter elements of matrix: " << endl; for(i=0; i<r; ++i) for(j=0; j<c; ++j) { cout << "Enter elements a" << i+1 << j+1 << ": "; cin >> a[i][j]; } /* Displaying the matrix a[][] */ cout << endl ...
ادامه مطلب
gameover.blog.irنکته: در ضرب دو ماتریس باید تعداد ستون ماتریس اول و تعداد سطر ماتریس دوم برابر باشند. #include <iostream> using namespace std; int main() { int a[10][10], b[10][10], mult[10][10], r1, c1, r2, c2, i, j, k; cout << "Enter rows and columns for first matrix: "; cin >> r1 >> c1; cout << "Enter rows and columns for second matrix: "; cin >> r2 >> c2; /* If colum of first matrix in not equal to row of second matrix, asking user to enter the size of matrix again. */ while (c1!=r2) { cout << "Error! column of first matrix not equal to row of second."; cout << "Enter rows and columns for ...
ادامه مطلب
gameover.blog.ir #include <iostream> using namespace std; int main(){ int r,c,a[100][100],b[100][100],sum[100][100],i,j; cout << "Enter number of rows (between 1 and 100): "; cin >> r; cout << "Enter number of columns (between 1 and 100): "; cin >> c; cout << endl << "Enter elements of 1st matrix: " << endl; /* Storing elements of first matrix entered by user. */ for(i=0;i<r;++i) for(j=0;j<c;++j) { cout << "Enter element a" << i+1 << j+1 << " : "; cin >> a[i][j]; } /* Storing elements of second matrix entered by user. */ cout <...
ادامه مطلب