Tải bản đầy đủ (.ppt) (46 trang)

C#: chường 5

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 (368.41 KB, 46 trang )

Phùng Văn Minh -2009
1
Chương 5 – Các cấu trúc điều khiển: Phần 2
Chương 5 – Các cấu trúc điều khiển: Phần 2
Outline
5.1 Giới thiệu
5.2 Cơ bản về lệnh lặp có biến đếm
5.3 Câu lệnh for
5.4 Ví dụ về lệnh for
5.5 Cấu trúc chuyển mạch switch
5.6 Câu lệnh lặp do/while
5.7 Lệnh break và continue
5.8 Các toán tử logic và điều kiện
5.9 Tổng kết cấu trúc chương trình
Phùng Văn Minh -2009
2
5.2
5.2
Cơ bản về lệnh lặp có biến đếm
Cơ bản về lệnh lặp có biến đếm

Lệnh lặp có biến đếm

Biến điều khiển

Biến được sử dụng để xác định vòng lặp còn tiếp tục không

Giá trị khởi tạo của biến điều khiển

Sự tăng/giảm của biến


Điều kiện

Kiểm tra việc lặp còn tiếp tục không
Phùng Văn Minh - 2009.
Outline
3
WhileCounter.cs
WhileCounter.cs
Program Output
Program Output
1 // Hình 5.1: WhileCounter.cs
2 // Counter-controlled repetition.
3
4 using System;
5
6 class WhileCounter
7 {
8 static void Main( string[] args )
9 {
10 int counter = 1; // initialization
11
12 while ( counter <= 5 ) // repetition condition
13 {
14 Console.WriteLine( counter );
15 counter++; // increment
16
17 } // end while
18
19 } // end method Main
20

21 } // end class WhileCounter
1
2
3
4
5
Phùng Văn Minh -2009
4
5.3 Câu lệnh
5.3 Câu lệnh
for
for

Cấu trúc lệnh for

Cú pháp: for (Expression1, Expression2, Expression3)

Expression1 = tên biến điều khiển

Có thể chứa nhiều biến

Expression2 = điều kiện lặp

Expression3 = tăng hoặc giảm biến điều khiển

Nếu Expression1 có nhiều biến, Expression3 phải có các
biến tương ứng

++counter và counter++ là như nhau


Miền của biến

Expression1 có thể được dùng như là phần thân của vòng lặp
for.

Khi vòng lặp kết thúc biến bị hủy
Phùng Văn Minh -2009
5
5.3 Câu lệnh
5.3 Câu lệnh
for
for
for ( int counter = 1; counter <= 5; counter++ )
giá trị khởi tạo
của biến điều khiển
tăng biến đếm
Tên Biến điều khiển Giá trị cuối của biến điều khiển
Từ khóa for
Điều kiện lặp
Hình 5.3 Các thành phần cơ bản của lệnh for.
Phùng Văn Minh -2009
6
5.3 Câu lệnh
5.3 Câu lệnh
for
for
counter++
Khai báo khởi trị của
biến điều khiển.


Xác định xem biến
điều khiển đã tới
giá trị cuối chưa.

counter <= 10
Console.WriteLine
( counter * 10 );
true
false
int counter = 1
Thân lệnh lặp thường
nhiều lệnh nhỏ
Tăng biến đếm.

Hình 5.4 Sơ đồ khối của lệnh for.
Phùng Văn Minh - 2009.
Outline
7
ForCounter.cs
ForCounter.cs
Program Output
Program Output
1 // Hình 5.2: ForCounter.cs
2 // Counter-controlled repetition with the for structure.
3
4 using System;
5
6 class ForCounter
7 {
8 static void Main( string[] args )

9 {
10 // initialization, repetition condition and incrementing
11 // are all included in the for structure
12 for ( int counter = 1; counter <= 5; counter++ )
13 Console.WriteLine( counter );
14 }
15 }
1
2
3
4
5
Phùng Văn Minh -2009
8
5.4 Ví dụ sử dụng lệnh
5.4 Ví dụ sử dụng lệnh
for
for

Tăng/Giảm

Khi tăng

Đa số các trường hợp sử dụng toán tử < hoặc <=

Khi giảm

Đa số các trường hợp sử dụng toán tử > hoặc >=

Hộp thông báo - Message boxes


Các nút - Buttons

OK – nút OK

OKCancel - 2 nút OK và Cancel

YesNo – 2 nút Yes và No

AbortRetryIgnore – 3 nút Arbort, Retry và Ignore

YesNoCancel – 3 nút Yes, No và Cancel

RetryCancel - 2 nút Retry và Cancel
Phùng Văn Minh -2009
9
5.4 Ví dụ sử dụng lệnh
5.4 Ví dụ sử dụng lệnh
for
for

Hộp thông báo - Massages boxes

Các biểu tương - Icons

Exclamation – Biểu tượng hình tam giác có dấu chấm
thang

Question – Biểu tượng hình dấu hỏi chấm


Error – Biểu tượng hình vòng tròn có dấu chữ thập

Information – Biểu tượng dấu chấm thang

Định dạng - Formatting

(Biến : định dạng)

Bảng 5.9 danh sách các định dạng
Phùng Văn Minh - 2009.
Outline
10
Sum.cs
Sum.cs
Program Output
Program Output
1 // Hình 5.5: Sum.cs
2 // Summation with the for structure.
3
4 using System;
5 using System.Windows.Forms;
6
7 class Sum
8 {
9 static void Main( string[] args )
10 {
11 int sum = 0;
12
13 for ( int number = 2; number <= 100; number += 2 )
14 sum += number;

15
16 MessageBox.Show( "The sum is " + sum,
17 "Sum Even Integers from 2 to 100",
18 MessageBoxButtons.OK,
19 MessageBoxIcon.Information );
20
21 } // end method Main
22
23 } // end class Sum
Argument 4:
MessageBox Icon
(Optional)
Argument 3: OK dialog
button. (Optional)

Argument 2: Title bar
string (Optional)
Argument 1: Message
to display
Phùng Văn Minh -2009
11
5.4 Ví dụ sử dụng lệnh
5.4 Ví dụ sử dụng lệnh
for
for
MessageBox Ic ons Ic on Desc ription
MessageBoxIcon.Exclamation

Displays a dialog with an
exclamation point. Typically

used to caution the user against
potential problems.
MessageBoxIcon.Information

Displays a dialog with an
informational message to the
user.

MessageBoxIcon.Question

Displays a dialog with a question
mark. Typically used to ask the
user a question.
MessageBoxIcon.Error

Displays a dialog with an

x

in a
red circle. Helps alert user of
errors or important messages.

Fig. 5.6
Ic ons for message dia logs.

Phùng Văn Minh -2009
12
5.4 Ví dụ sử dụng lệnh
5.4 Ví dụ sử dụng lệnh

for
for
Messag eBox Buttons Desc rip tion
MessageBoxButton.OK
Specifies that the dialog should include an
OK
button.
MessageBoxButton.OKCancel
Specifies that the dialog should include
OK
and
Cancel

buttons. Warns the user about some condition and allows
the user to either continue or cancel an operation.
MessageBoxButton.YesNo
Specifies that the dialog should contain
Yes
and
No

buttons. Used to ask the user a question.
MessageBoxButton.YesNoCancel
Specifies that the dialog should contain
Yes
,
No
and
Cancel
buttons. Typically used to ask the user a question

but still allows the user to cancel the operation.
MessageBoxButton.RetryCancel
Specifies that the dialog should contain
Retry
and
Cancel

buttons. Typically used to inform a user about a failed
operation and allow the user to retry or cancel the operation.
MessageBoxButton.AbortRetryIgnore
Specifies that the dialog should contain
Abort
,
Retry
and
Ignore
buttons. Typically used to inform the user that one
of a series of operations has failed and allow the user to
abort the series of operations, retry the failed operation or
ignore the failed operation and continue.
Fig. 5.7
Buttons for messa ge dialogs.

Phùng Văn Minh - 2009.
Outline
13
Interest.cs
Interest.cs
1 // Hình 5.8: Interest.cs
2 // Calculating compound interest.

3
4 using System;
5 using System.Windows.Forms;
6
7 class Interest
8 {
9 static void Main( string[] args )
10 {
11 decimal amount, principal = ( decimal ) 1000.00;
12 double rate = .05;
13 string output;
14
15 output = "Year\tAmount on deposit\n";
16
17 for ( int year = 1; year <= 10; year++ )
18 {
19 amount = principal *
20 ( decimal ) Math.Pow( 1.0 + rate, year );
21
22 output += year + "\t" +
23 String.Format( "{0:C}", amount ) + "\n";
24 }
25
26 MessageBox.Show( output, "Compound Interest",
27 MessageBoxButtons.OK, MessageBoxIcon.Information );
28
29 } // end method Main
30
31 } // end class Interest
Phùng Văn Minh - 2009.

Outline
14
Interest.cs
Interest.cs
Program Output
Program Output
Phùng Văn Minh -2009
15
5.4 Ví dụ sử dụng lệnh
5.4 Ví dụ sử dụng lệnh
for
for
Forma t Cod e Desc rip tion
C or c
Formats the string as currency. Precedes the number with an appropriate currency
symbol (
$
in the US). Separates digits with an appropriate separator character
(comma in the US) and sets the number of decimal places to two by default.
D or d
Formats the string as a decimal. Displays number as an integer.
N
or
n
Formats the string with commas and two decimal places.
E or e
Formats the number using scientific notation with a default of six decimal places.
F or f
Formats the string with a fixed number of decimal places (two by default).
G or g General. Either E or F.

X
or
x
Formats the string as hexadecimal.
Fig. 5.9
string
forma tting c od es.

Phùng Văn Minh -2009
16
5.5 Cấu trúc
5.5 Cấu trúc
switch
switch

Câu lệnh switch

Biểu thức hằng

String – xâu ký tự

Số nguyên

Các trường hợp

Case ‘x’ :

Sử dụng các biến hằng

Các trường hợp rỗng


Trường hợp mặc định

Câu lệnh break

Thoát khỏi lệnh switch
Phùng Văn Minh - 2009.
Outline
17
SwitchTest.cs
SwitchTest.cs
1 // Hình 5.10: SwitchTest.cs
2 // Counting letter grades.
3
4 using System;
5
6 class SwitchTest
7 {
8 static void Main( string[] args )
9 {
10 char grade; // one grade
11 int aCount = 0, // number of As
12 bCount = 0, // number of Bs
13 cCount = 0, // number of Cs
14 dCount = 0, // number of Ds
15 fCount = 0; // number of Fs
16
17 for ( int i = 1; i <= 10; i++ )
18 {
19 Console.Write( "Enter a letter grade: " );

20 grade = Char.Parse( Console.ReadLine() );
21
22 switch ( grade )
23 {
24 case 'A': // grade is uppercase A
25 case 'a': // or lowercase a
26 ++aCount;
27 break;
28
29 case 'B': // grade is uppercase B
30 case 'b': // or lowercase b
31 ++bCount;
32 break;
33
Câu lệnh switch dùng biến grade để
kiểm tra.
case ‘A’ rổng nên trùng với
case ‘a’
Cả hai trường hợp đều tăng biến đếm aCount
Câu lệnh break thoát khỏi lệnh switch
Cả case ‘B’ và case ‘b’ đều thêm 1 cho biến
bCount
Vòng lặp for lặp 10 lần
Mỗi biến làm việc như biến đếm khởi
trị bằng 0
Phùng Văn Minh - 2009.
Outline
18
SwitchTest.cs
SwitchTest.cs

34 case 'C': // grade is uppercase C
35 case 'c': // or lowercase c
36 ++cCount;
37 break;
38
39 case 'D': // grade is uppercase D
40 case 'd': // or lowercase d
41 ++dCount;
42 break;
43
44 case 'F': // grade is uppercase F
45 case 'f': // or lowercase f
46 ++fCount;
47 break;
48
49 default: // processes all other characters
50 Console.WriteLine(
51 "Incorrect letter grade entered." +
52 "\nGrade not added to totals." );
53 break;
54
55 } // end switch
56
57 } // end for
58
59 Console.WriteLine(
60 "\nTotals for each letter grade are:\nA: {0}" +
61 "\nB: {1}\nC: {2}\nD: {3}\nF: {4}", aCount, bCount,
62 cCount, dCount, fCount );
63

64 } // end method Main
65
66 } // end class SwitchTest
Nếu không trùng với các trường hợp trên thì
thực hiện trường hợp default
Hiện kết quả

Tài liệu bạn tìm kiếm đã sẵn sàng tải về

Tải bản đầy đủ ngay
×