Tải bản đầy đủ (.pdf) (18 trang)

050 chapter 03 tủ tài liệu training

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (11.82 MB, 18 trang )

The Complete C# Developer Course

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


The Fundamentals of C# Part 3

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


The Fundamentals of C# Part 3

Loops part 1

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


Loops
For loop
for loop executes a block of statements repeatedly until the specified condition
returns false.

for (int i=1; i <= 10; i++)



The Fundamentals of C# Part 3

Loops part 2

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


Loops

while
do while


The Fundamentals of C# Part 3

Loops part 3

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


Loops
Nested loops
0000000000
0000000000
0000000000
0000000000

0000000000
0000000000
0000000000
0000000000
0000000000
0000000000


The Fundamentals of C# Part 3

Loops exercise

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


Loops
Even Numbers

2 4 6 8 10 12 ..etc 100


Loops
Triangle
0
00
000
0000
00000

000000
0000000
00000000
000000000
0000000000


The Fundamentals of C# Part 3

Arrays

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


Arrays

Array of 5

int[] numbers = new int[5];


Arrays

Array of 8

string[] numbers = new string[8];



The Fundamentals of C# Part 3

Assignments (4, 5, 6)

Ahmad Mohey | Full Stack Developer
E-mail :
Twitter : ahmadmohey85


Assignments
Assignment No.4: (Upside Down Triangle)
0000000000000000
000000000000000
00000000000000
0000000000000
000000000000
00000000000
0000000000
000000000
00000000
0000000
000000
00000
0000
000
00
0


Assignments


Assignment No.5: (Months & Days)
January - 31 days
November - 30 days


Assignments
Assignment No.6: (Dice Roller)
Roll dice? (yes, no)
Yes
New dice no is 1
Roll dice? (yes, no)
yes
New dice no is 3
Roll dice? (yes, no)
YES
New dice no is 5
Roll dice? (yes, no)
yeS
New dice no is 1
Roll dice? (yes, no)
no



×