fa
Feedback
Biomedical engineering 3

Biomedical engineering 3

رفتن به کانال در Telegram

هل أنت طالب هندسة في جامعة صنعاء، كلية الهندسة؟!إذاً أنت في المكان الصحيح! إاليك قناتنا التي تنشر كتب الهندسة المختلفة، ملخصات بشتى انواعها .بالإضافة إلى شروحات فيديو وتوضيحات للتكاليف وغيرها . 🔥📚

نمایش بیشتر
312
مشترکین
-124 ساعت
+67 روز
+3330 روز
آرشیو پست ها
للي مش عارف في تطبيق atlas في اختبارات تقدر تختبر نفسك منها 👌👍
للي مش عارف في تطبيق atlas في اختبارات تقدر تختبر نفسك منها 👌👍

المقرر لعند الجهاز الهضمي فقط 🔥

محاضرة الاناتومي السادسة #anatomy

محاضرة الأناتومي الخامسة الجهاز الدوري #anatomy

محاضرة الانتومي الرابعة #anatomy

+1
محاضرة الانتومي الثانية (العظام والمفاصل) #anatomy

https://harmash.com/tutorials/cplusplus/overview افضل موقع عربي لتعلم البرمجه.... موقع رهيب جدا بيعلمك خطوه بخطوه حتى الاحتراف 👌 #Programming2

رياضيات ت م١١.pdf

Fluid- ت - م8.pdf #Bio_Fluid #تصوير

درس اليوم في معمل البرمجة #lab_programing2

ياسلام علييك وينك من زمان👏 هكذا حق صميل امانه 😂😂🤣

بمناسبة البشرى السعيدة😁 على كل طالب أن يعمل 5 أسئلة واضحة مع إجابات منطقية ويسلمها غدا حتى نسلمها للدكتور ثابت يوم الاثنين بحيث كل طالب يكتب خمسة أسئلة اختيارات في ورقة ويكتب اسمه #مانشتيش_ننتكب

🛑🛑تعميم هام جدا🛑🛑 تم تأجيل اختبار ريادة الأعمال إلى يوم الخميس 🤩🥳🥳 بالتوفيق 💫

#include <stdio.h> #define MAX_SIZE 10 // دالة لقراءة المصفوفة من المستخدم void readMatrix(int matrix[MAX_SIZE][MAX_SIZE], int rows, int cols) { printf("Enter the elements of the matrix:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { scanf("%d", &matrix[i][j]); } } } // دالة لطباعة المصفوفة void printMatrix(int matrix[MAX_SIZE][MAX_SIZE], int rows, int cols) { printf("Matrix:\n"); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { printf("%d ", matrix[i][j]); } printf("\n"); } } // دالة لضرب مصفوفتين void multiplyMatrices(int matrix1[MAX_SIZE][MAX_SIZE], int rows1, int cols1, int matrix2[MAX_SIZE][MAX_SIZE], int rows2, int cols2, int result[MAX_SIZE][MAX_SIZE]) { if (cols1 != rows2) { printf("Error: The number of columns in the first matrix must be equal to the number of rows in the second matrix.\n"); return; } for (int i = 0; i < rows1; i++) { for (int j = 0; j < cols2; j++) { result[i][j] = 0; for (int k = 0; k < cols1; k++) { result[i][j] += matrix1[i][k] * matrix2[k][j]; } } } } int main() { int matrix1[MAX_SIZE][MAX_SIZE]; int matrix2[MAX_SIZE][MAX_SIZE]; int result[MAX_SIZE][MAX_SIZE]; int rows1, cols1, rows2, cols2; printf("Enter the number of rows of the first matrix: "); scanf("%d", &rows1);     printf("Enter the number of columns of the first matrix: ");     scanf("%d", &cols1); printf("Enter the number of rows of the second matrix: "); scanf("%d", &rows2);     printf("Enter the number of columns of the second matrix: ");     scanf("%d", &cols2); if (cols1 != rows2) { printf("Error: The number of columns in the first matrix must be equal to the number of rows in the second matrix.\n"); return 0; } readMatrix(matrix1, rows1, cols1); readMatrix(matrix2, rows2, cols2); multiplyMatrices(matrix1, rows1, cols1, matrix2, rows2, cols2, result); printMatrix(result, rows1, cols2); return 0; }
تكليف البرمجه لضرب مصفوفتين...... #lab_programming2

Document from Nounis🙂

+2
#applied_math #تصوير

ملف الاسئلة الي بيعمل الدكتور ثابت الاختبار النصفي منه 👍 #مهارات_تواصل_وريادة_أعمال

🛑🛑🛑 للتذكير الاختبار من 12الى2في مدرج المحطوري بالتوفيق.

#include <stdio.h> int main( ) { int a = -3, b= 3, c; c= a+++b++; printf("%d %d %d" , a, b, c); return 0; }
The Output will be : a)Error b) -2 4 1 c) -3 3 2 d) -2 4 0

https://www.interviewbit.com/c-programming-mcq/ موقع اسئلة للغة C اطلعوا عليه جاب منه بالنصفي العام الماضي حسب كلام الطلاب بالتوفيق للجميع #Programming2