Uploaded by عزالدين صادق علي احمد الجلال

121CCS Mini Project Announcement for منتدى برمجة Students-431(1)

advertisement
‫ر‬
‫مشوع المعمل لمقرر ‪121‬عال (‪ 10‬درجات)‬
‫ً‬
‫كالتال‪:‬‬
‫برنامجا بلغة جافا يعمل‬
‫اكتب‬
‫ي‬
‫والشوط (‪ً )if statements‬‬
‫يمرر مصفوفة إل دالة وينفذ عليها عملية معينة (أي عملية) داخل تلك الدالة‪ .‬يتم تنفيذ العمليات عىل المصفوفة باستخدام الحلقات التكرارية (‪ )Loops‬ر‬
‫معا‪.‬‬
‫تعليمات‪:‬‬
‫ر‬
‫‪ -1‬يجب عىل الطالبة أن تكتب فكرة برنامجها يف المنتدى المخصص للمشوع وتلتم بها‪ .‬ويجب عىل كل طالبه أن تكون فكرته مختلفة عن زميالتها‪.‬‬
‫ً‬
‫أيضا‪.‬‬
‫التنامج كاملة عىل ورق بخط اليد وتجب كتابة رشح لكل سطر بخط اليد‬
‫‪ -2‬تجب كتابة أوامر ر‬
‫‪ -3‬إذا تطابقت إجابة طالبه مع إجابة طالبه آخر فسوف يتم اتخاذ الالزم حيال ذلك‪.‬‬
‫طريقة التسليم‪:‬‬
‫الجامع ورقم الشعبة يف ملف ‪.Word‬‬
‫‪ -1‬اكتب اسمك ورقمك‬
‫ي‬
‫التنامج عىل شكل نص إل نفس الملف ‪.Word‬‬
‫‪ -2‬يتم نسخ أوامر ر‬
‫التنامج مع نتائج التنفيذ وإرفاق الصورة داخل الملف ‪.Word‬‬
‫‪ -3‬يتم تصوير الشاشة ألوامر ر‬
‫‪ -4‬يتم إرفاق صورة للحل مع ر‬
‫الشح المكتوب عىل الورق يف نفس ملف ‪.Word‬‬
‫‪ -5‬آخر تاري خ لتسليم ر‬
‫نوفمت ‪.2021‬‬
‫المشوع هو السبت ‪ 1443‬الموافق ‪27‬‬
‫ر‬
‫‪ -6‬يتم تسليم ملف الورد عىل بالك بورد عىل الرابط الخاص بتسليم ر‬
‫المشوع‪.‬‬
‫‪.‬‬
‫‪class arr22‬‬
‫{‬
‫)][‪public static void main(String args‬‬
‫{‬
‫;)‪Scanner sc = new Scanner(System.in‬‬
‫;‪int teep‬‬
‫;‪int i,j,row,col,temp‬‬
‫;)"‪System.out.println("Enter the number of rows:‬‬
‫;)(‪row = sc.nextInt‬‬
‫;)"‪System.out.println("Enter the number of columns:‬‬
‫;)(‪col = sc.nextInt‬‬
int[][] mat = new int[row][col];
System.out.println("Enter the elements of the matrix") ;
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
mat[i][j] = sc.nextInt();
}
}
System.out.println("The elements of the matrix") ;
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
system.out.println( "Enter elements a" << i + 1 << j + 1 << ": ";
a[i][j=sc.nextln ]; {
System.out.print(mat[i][j]+"\t");
}
System.out.println("");
}
for (int i = 0; i < total; i++)
{
for (int j = i + 1; j < total; j++)
{
if (a[i] > a[j])
{
teep = a[i];
a[i] = a[j];
a[j] = teep;;
}
System.out.println(" the largest number is ");
System.out.println( a[j] );
}
}
//To find transpose
for(i=0;i<row;i++)
{
for(j=0;j<i;j++)
{
temp = mat[i][j];
mat[i][j] = mat[j][i];
mat[j][i] = temp;
}
}
System.out.println("The transpose of the matrix is :- ") ;
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
System.out.print(mat[i][j]+"\t");
}
System.out.println("");
}
retrun 0;}
}
Enter the number of rows
3
Enter the number of columns
3
Enter elements of matrix:
Enter elements a11: 1
Enter elements a12: 2
Enter elements a13: 3
Enter elements a21: 4
Enter elements a22: 5
Enter elements a23: 6
Enter elements a31: 7
Enter elements a32: 8
Enter elements a33: 9
Entered Matrix:
123
456
789
the largest number is
9
Transpose of Matrix:
147
258
369
Download