TAILIEUCHUNG - Writing while Statements

Báo cáo bằng văn bản trong khi Bạn sử dụng một tuyên bố, trong khi liên tục chạy một tuyên bố trong khi một biểu thức Boolean là đúng sự thật. Cú pháp của một tuyên bố trong khi đó là: booleanExpression (trong khi) tuyên bố Biểu thức Boolean được đánh giá | Writing while Statements You use a while statement to repeatedly run a statement while a Boolean expression is true. The syntax of a while statement is while booleanExpression statement The Boolean expression is evaluated and if it s true the statement runs and the Boolean expression is evaluated again. If the expression is still true the statement is repeated and the expression evaluated again. This process continues until the Boolean expression evaluates to false when the while statement exits execution then continues with the first statement after the while statement. A while statement shares many syntactic similarities with an if statement in fact the syntax is identical except for the keyword The expression must be a Boolean expression. The Boolean expression must be written inside parentheses. If the Boolean expression evaluates to false when first evaluated the statement does not run. If you want to perform two or more statements under the control of a while statement you must use curly braces to group those statements in a block. Here s a while statement that writes the values 0 through 9 to the console int i 0 while i 10 i i All while statements should terminate at some point. A common beginner s mistake is forgetting to include a statement to eventually cause the Boolean expression to evaluate to false and terminate the loop. In the example the i statement performs this role. NOTE The variable i in the while loop controls the number of iterations that are performed. This is a very common idiom and the variable that performs this role is sometimes called the Sentinel variable. In the following exercise you will write a while loop to read the contents of a source file one line at a time and write each line to a text box in a Windows application. Write a while statement 1. Using Visual Studio 2005 open the WhileStatement project located in the Microsoft Press Visual CSharp Step by Step Chapter 5 WhileStatement folder in your My Documents .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.