خوارزمية psuedo code لحساب مجموع عناصر مصفوفتين ثنائيتي الأبعاد
- برمجة سي c
- خوارزميات
- 2022-02-17
- nooortech
الأجوبة
تم حساب مجموع مصفوفتين بحساب مجموع كل قيمتين من نفس الرتبة في كلا المصفوفتين، شرط أن تكون المصفوفتين من نفس الحجم.
Algorithme addition
var int table1[100][100],table2[100][100],table3[100][100], i, j,N, M, ;
Begin
read ( N, M ) ;
// read and fill the the tables 1 and 2
// show the tables
// the addition of table1 and table 2
for ( i = 0 ; i< ligne ; i++ )
{
for ( j = 0 ; j< column ; j++ )
{ table3[i][j] = table1[i][j] + table2[i][j] ;}
}
// show the result table3
end,
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال