SlideShare a Scribd company logo
DATA STRUCTURE
Chapter 1: Intro To Principle of
C#
Prepared & Presented by
Mr. Mahmoud R. Alfarra
2010-2011
College of Science & Technology
Dep. Of Computer Science & IT
BCs of Information Technology
http://mfarra.cst.ps
Out Line
 What is C#?
 Data types, declaration of variables
 Calculations and logical operations
 Control statements
 Arrays
 Methods
 Class & Objects
2
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
What is C#?
 C# (pronounced "C-sharp") is an object-
oriented programming language from Microsoft
that aims to combine the computing power of
C++ with the programming ease of Visual
Basic.
 C# is based on C++ and contains features
similar to those of Java.
 C# is designed to work with Microsoft's .Net
platform.
3
Applications of C#
 Console Applications
 Windows Applications
 Mobile Applications
 ASP .NET Web Applications
4
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
Data types, declaration of variables
5
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
 Rules of variables in C# are the same of Java:
int x = 5, y = 9;
int x = 5;
int y = 9;
Calculations and logical
operations
6
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
operator Type
()
++ --
postfix
++ -- ! prefix
* / %
+ -
< <= > >=
== !=
&&
||
= += -= *= /= %=
Control statements
 Selection statements
 Iteration statements
Selection statements
8
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
 Selection statements in C# are identical with
java:
 If
 If … else
 nested if
 Switch
Example: Selection statements
9
using System;
1
class Marks_using_if_else
2
{
3
static void Main()
4
{
5
int mark;
6
String input;
7
Console.Write("Enter the mark: ");
8
//Read mark
9
input = Console.ReadLine();
10
mark = int.Parse(input);
11
//check the mark
12
if (mark >= 50)
13
Console.WriteLine("Passed");
14
Else
15
Console.WriteLine("Failed");
16
} }
17
Example: Selection statements
10
static void Main()
1
{
2
int mark;
3
string input;
4
Console.Write("Enter the mark: ");
5
//Read mark
6
input = Console.ReadLine();
7
mark = int.Parse(input);
8
//check the mark
9
if (mark >= 85)
10
Console.WriteLine("Excellent");
11
else if (mark >= 75)
12
Console.WriteLine("Very Good");
13
else if (mark >= 65)
14
Console.WriteLine("Good");
15
else if (mark >= 50)
16
Console.WriteLine("Passed");
17
Else
18
Console.WriteLine("Failed");
19
} }
20
Iteration statements
11
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
 Iteration statements in C# like them of java
 while
 do… while
 for
 For each
Example: Iteration statements
12
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
static void Main(string[] args)
{
int fact = 1;
for (int i = 1; i <= 10; i++)
fact = fact * i;
Console.WriteLine("fact of 10 is" + fact);
Console.Read();
}
Arrays
13
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
Arrays
14
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
type[] array_name = new type[ x ];
Type of elements No. of elements
type [] array_name;
array_name = new type[ x ];
1- D Array
Arrays
15
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
type[] [] array_name = new type[ x ][ y ];
Type of elemnts No. of rows
type [][] array_name;
array_name = new type[ x ][ y ];
No. of Col.
2- D array
Methods
16
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
return_type function_name (parameters type para_name)
{
// statements
Return_type;
}
Variable of returned type Name of method Parameters
Method’s call
17
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
 To call (invoke) method sum, which receives two
integers numbers, and return their sum, we write the
following code:
int x = sum (4,5);
To download more example and practices
about
the principles of c#, please visit my site
and you tube channel:
http://mfarra.cst.ps
www.youtube.com/mralfarra1
Thank You …
18
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
Remember that: question is the key of knowledge
Ahl Eljanna 

‫احل‬‫ن‬‫ا‬ ‫اج‬‫م‬ ‫ن‬ ‫احلاحل‬‫ص‬‫ال‬ ‫وعملوا‬ ‫آمنوا‬ ‫الذين‬ ‫وبشر‬
‫ار‬‫جت‬
‫احل‬‫ا‬ ‫احل‬‫ا‬ ‫ا‬ ‫ار‬‫ا‬ ‫ان‬‫ا‬‫م‬ ‫احل‬‫ا‬ ‫من‬ ‫اوا‬‫ا‬ ‫ا‬ ‫احل‬‫ا‬‫م‬‫زل‬ ‫احل‬‫ا‬‫ك‬ ‫ا‬ ‫احل‬‫ا‬ ‫ها‬ ‫ان‬‫ا‬‫م‬
‫اذا‬‫ا‬‫ه‬ ‫لوا‬
‫اج‬‫ا‬‫ا‬‫م‬‫و‬ ‫حل‬ ‫احل‬‫ا‬‫ا‬‫ش‬‫ما‬ ‫ا‬‫ا‬‫ا‬‫ب‬ ‫اوا‬‫ا‬‫ا‬‫ا‬‫ون‬ ‫ات‬‫ا‬‫ا‬‫ب‬ ‫ان‬‫ا‬‫ا‬‫م‬ ‫احل‬‫ا‬‫ا‬‫ن‬ ‫ا‬ ‫اذ‬‫ا‬‫ا‬‫ل‬‫ا‬
‫ناوا‬ ‫احل‬‫ا‬‫ا‬
‫خحللدو‬ ‫حل‬ ‫وهج‬ ‫ر‬ ‫مط‬
19
‫البيانات‬ ‫تراكيب‬ ‫مساق‬
‫إعداد‬ ‫العلمية‬ ‫المادة‬
/
‫أ‬
.
‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬

More Related Content

PPT
Chapter 3: basic sorting algorithms data structure
PPT
Chapter 7: Queue data structure
PPT
Chapter 5: linked list data structure
PPT
Chapter 6: stack data structure
PPT
Chapter 4: basic search algorithms data structure
PPT
Chapter 10: hashing data structure
PPTX
2 introduction to data structure
PPTX
Linking the prospective and retrospective provenance of scripts
Chapter 3: basic sorting algorithms data structure
Chapter 7: Queue data structure
Chapter 5: linked list data structure
Chapter 6: stack data structure
Chapter 4: basic search algorithms data structure
Chapter 10: hashing data structure
2 introduction to data structure
Linking the prospective and retrospective provenance of scripts

What's hot (20)

PDF
Tapp 2014 (belhajjame)
PPTX
المحاضرة الثامنة: تراكيب البيانات الطابور
PPTX
PDF
Data structure lab manual
DOCX
Data Structure Project File
PPTX
Queue Implementation Using Array & Linked List
PPT
Queue Data Structure
PPT
Chapter 6 ds
PPT
Chapter 11 ds
PDF
3 Array operations
PPSX
Data structure stack&queue basics
PPTX
Functional programming
PPTX
3 searching algorithms in Java
DOC
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
PPS
Oops recap
PPTX
Stack and Queue
PPT
Fallsem2015 16 cp1699-20-jul-2015_rm01_stacks_and_queues
PPTX
Stack Data structure
PPTX
Stack and Queue by M.Gomathi Lecturer
PDF
Class xi sample paper (Computer Science)
Tapp 2014 (belhajjame)
المحاضرة الثامنة: تراكيب البيانات الطابور
Data structure lab manual
Data Structure Project File
Queue Implementation Using Array & Linked List
Queue Data Structure
Chapter 6 ds
Chapter 11 ds
3 Array operations
Data structure stack&queue basics
Functional programming
3 searching algorithms in Java
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
Oops recap
Stack and Queue
Fallsem2015 16 cp1699-20-jul-2015_rm01_stacks_and_queues
Stack Data structure
Stack and Queue by M.Gomathi Lecturer
Class xi sample paper (Computer Science)
Ad

Similar to Chapter1 intro toprincipleofc#_datastructure_b_cs (20)

PPTX
PDC Video on C# 4.0 Futures
PDF
Google Interview Questions By Scholarhat
PPT
C# Overview. Fundamentals of C#.Net Language
PPTX
Dev-In-Town:Linq To Sql by Chan Ming Man
PPTX
.NET Foundation, Future of .NET and C#
PPTX
Microsoft 2014 Dev Plataform - Roslyn -& ASP.NET vNext
PPTX
Riga Power BI Meetup #14 - Datu analīze ar R
PPT
CSharp.ppt
PPT
CSharp.ppt
PPT
CSharp.ppt
PPT
Visual Studio .NET2010
PPT
Csharp dot net
PDF
Mist - Serverless proxy to Apache Spark
PDF
Data Summer Conf 2018, “Mist – Serverless proxy for Apache Spark (RUS)” — Vad...
PPTX
響應式程式開發之 .NET Core 應用 
PPTX
Novidades do c# 7 e 8
PDF
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
PPT
DotNet Introduction
PPT
CSharp POWERPOINT SLIDES C# VISUAL PROGRAMMING
PPT
CSharppppppppppppppppppppppppppppppppppp.ppt
PDC Video on C# 4.0 Futures
Google Interview Questions By Scholarhat
C# Overview. Fundamentals of C#.Net Language
Dev-In-Town:Linq To Sql by Chan Ming Man
.NET Foundation, Future of .NET and C#
Microsoft 2014 Dev Plataform - Roslyn -& ASP.NET vNext
Riga Power BI Meetup #14 - Datu analīze ar R
CSharp.ppt
CSharp.ppt
CSharp.ppt
Visual Studio .NET2010
Csharp dot net
Mist - Serverless proxy to Apache Spark
Data Summer Conf 2018, “Mist – Serverless proxy for Apache Spark (RUS)” — Vad...
響應式程式開發之 .NET Core 應用 
Novidades do c# 7 e 8
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
DotNet Introduction
CSharp POWERPOINT SLIDES C# VISUAL PROGRAMMING
CSharppppppppppppppppppppppppppppppppppp.ppt
Ad

More from Mahmoud Alfarra (20)

PPT
Computer Programming, Loops using Java - part 2
PPT
Computer Programming, Loops using Java
PPT
Chapter9 graph data structure
PPT
Chapter 8: tree data structure
PPT
Chapter 2: array and array list data structure
PPT
Chapter 0: introduction to data structure
PPTX
3 classification
PPT
8 programming-using-java decision-making practices 20102011
PPT
7 programming-using-java decision-making220102011
PPT
6 programming-using-java decision-making20102011-
PPT
5 programming-using-java intro-tooop20102011
PPT
4 programming-using-java intro-tojava20102011
PPT
3 programming-using-java introduction-to computer
PPT
2 programming-using-java how to built application
PPT
1 programming-using-java -introduction
PPTX
تلخيص النصوص تلقائيا
PDF
4×4×4 لتحصيل التميز
PPTX
Data preparation and processing chapter 2
PPTX
Introduction to-data-mining chapter 1
PPT
Graph-Based Technique for Extracting Keyphrases In a Single-Document (GTEK)
Computer Programming, Loops using Java - part 2
Computer Programming, Loops using Java
Chapter9 graph data structure
Chapter 8: tree data structure
Chapter 2: array and array list data structure
Chapter 0: introduction to data structure
3 classification
8 programming-using-java decision-making practices 20102011
7 programming-using-java decision-making220102011
6 programming-using-java decision-making20102011-
5 programming-using-java intro-tooop20102011
4 programming-using-java intro-tojava20102011
3 programming-using-java introduction-to computer
2 programming-using-java how to built application
1 programming-using-java -introduction
تلخيص النصوص تلقائيا
4×4×4 لتحصيل التميز
Data preparation and processing chapter 2
Introduction to-data-mining chapter 1
Graph-Based Technique for Extracting Keyphrases In a Single-Document (GTEK)

Recently uploaded (20)

PPTX
GDM (1) (1).pptx small presentation for students
PDF
Complications of Minimal Access Surgery at WLH
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Pre independence Education in Inndia.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Cell Types and Its function , kingdom of life
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Basic Mud Logging Guide for educational purpose
PPTX
Cell Structure & Organelles in detailed.
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
01-Introduction-to-Information-Management.pdf
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Insiders guide to clinical Medicine.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
GDM (1) (1).pptx small presentation for students
Complications of Minimal Access Surgery at WLH
Supply Chain Operations Speaking Notes -ICLT Program
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Pre independence Education in Inndia.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Microbial disease of the cardiovascular and lymphatic systems
STATICS OF THE RIGID BODIES Hibbelers.pdf
Cell Types and Its function , kingdom of life
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Basic Mud Logging Guide for educational purpose
Cell Structure & Organelles in detailed.
Module 4: Burden of Disease Tutorial Slides S2 2025
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
01-Introduction-to-Information-Management.pdf
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
VCE English Exam - Section C Student Revision Booklet
Insiders guide to clinical Medicine.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...

Chapter1 intro toprincipleofc#_datastructure_b_cs

  • 1. DATA STRUCTURE Chapter 1: Intro To Principle of C# Prepared & Presented by Mr. Mahmoud R. Alfarra 2010-2011 College of Science & Technology Dep. Of Computer Science & IT BCs of Information Technology http://mfarra.cst.ps
  • 2. Out Line  What is C#?  Data types, declaration of variables  Calculations and logical operations  Control statements  Arrays  Methods  Class & Objects 2 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
  • 3. What is C#?  C# (pronounced "C-sharp") is an object- oriented programming language from Microsoft that aims to combine the computing power of C++ with the programming ease of Visual Basic.  C# is based on C++ and contains features similar to those of Java.  C# is designed to work with Microsoft's .Net platform. 3
  • 4. Applications of C#  Console Applications  Windows Applications  Mobile Applications  ASP .NET Web Applications 4 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
  • 5. Data types, declaration of variables 5 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬  Rules of variables in C# are the same of Java: int x = 5, y = 9; int x = 5; int y = 9;
  • 6. Calculations and logical operations 6 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬ operator Type () ++ -- postfix ++ -- ! prefix * / % + - < <= > >= == != && || = += -= *= /= %=
  • 7. Control statements  Selection statements  Iteration statements
  • 8. Selection statements 8 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬  Selection statements in C# are identical with java:  If  If … else  nested if  Switch
  • 9. Example: Selection statements 9 using System; 1 class Marks_using_if_else 2 { 3 static void Main() 4 { 5 int mark; 6 String input; 7 Console.Write("Enter the mark: "); 8 //Read mark 9 input = Console.ReadLine(); 10 mark = int.Parse(input); 11 //check the mark 12 if (mark >= 50) 13 Console.WriteLine("Passed"); 14 Else 15 Console.WriteLine("Failed"); 16 } } 17
  • 10. Example: Selection statements 10 static void Main() 1 { 2 int mark; 3 string input; 4 Console.Write("Enter the mark: "); 5 //Read mark 6 input = Console.ReadLine(); 7 mark = int.Parse(input); 8 //check the mark 9 if (mark >= 85) 10 Console.WriteLine("Excellent"); 11 else if (mark >= 75) 12 Console.WriteLine("Very Good"); 13 else if (mark >= 65) 14 Console.WriteLine("Good"); 15 else if (mark >= 50) 16 Console.WriteLine("Passed"); 17 Else 18 Console.WriteLine("Failed"); 19 } } 20
  • 11. Iteration statements 11 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬  Iteration statements in C# like them of java  while  do… while  for  For each
  • 12. Example: Iteration statements 12 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬ static void Main(string[] args) { int fact = 1; for (int i = 1; i <= 10; i++) fact = fact * i; Console.WriteLine("fact of 10 is" + fact); Console.Read(); }
  • 13. Arrays 13 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬
  • 14. Arrays 14 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬ type[] array_name = new type[ x ]; Type of elements No. of elements type [] array_name; array_name = new type[ x ]; 1- D Array
  • 15. Arrays 15 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬ type[] [] array_name = new type[ x ][ y ]; Type of elemnts No. of rows type [][] array_name; array_name = new type[ x ][ y ]; No. of Col. 2- D array
  • 16. Methods 16 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬ return_type function_name (parameters type para_name) { // statements Return_type; } Variable of returned type Name of method Parameters
  • 17. Method’s call 17 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬  To call (invoke) method sum, which receives two integers numbers, and return their sum, we write the following code: int x = sum (4,5); To download more example and practices about the principles of c#, please visit my site and you tube channel: http://mfarra.cst.ps www.youtube.com/mralfarra1
  • 18. Thank You … 18 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬ Remember that: question is the key of knowledge
  • 19. Ahl Eljanna   ‫احل‬‫ن‬‫ا‬ ‫اج‬‫م‬ ‫ن‬ ‫احلاحل‬‫ص‬‫ال‬ ‫وعملوا‬ ‫آمنوا‬ ‫الذين‬ ‫وبشر‬ ‫ار‬‫جت‬ ‫احل‬‫ا‬ ‫احل‬‫ا‬ ‫ا‬ ‫ار‬‫ا‬ ‫ان‬‫ا‬‫م‬ ‫احل‬‫ا‬ ‫من‬ ‫اوا‬‫ا‬ ‫ا‬ ‫احل‬‫ا‬‫م‬‫زل‬ ‫احل‬‫ا‬‫ك‬ ‫ا‬ ‫احل‬‫ا‬ ‫ها‬ ‫ان‬‫ا‬‫م‬ ‫اذا‬‫ا‬‫ه‬ ‫لوا‬ ‫اج‬‫ا‬‫ا‬‫م‬‫و‬ ‫حل‬ ‫احل‬‫ا‬‫ا‬‫ش‬‫ما‬ ‫ا‬‫ا‬‫ا‬‫ب‬ ‫اوا‬‫ا‬‫ا‬‫ا‬‫ون‬ ‫ات‬‫ا‬‫ا‬‫ب‬ ‫ان‬‫ا‬‫ا‬‫م‬ ‫احل‬‫ا‬‫ا‬‫ن‬ ‫ا‬ ‫اذ‬‫ا‬‫ا‬‫ل‬‫ا‬ ‫ناوا‬ ‫احل‬‫ا‬‫ا‬ ‫خحللدو‬ ‫حل‬ ‫وهج‬ ‫ر‬ ‫مط‬ 19 ‫البيانات‬ ‫تراكيب‬ ‫مساق‬ ‫إعداد‬ ‫العلمية‬ ‫المادة‬ / ‫أ‬ . ‫ا‬ َّ‫الفــر‬ ‫رفيق‬ ‫محمود‬