Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống
1
/ 58 trang
THÔNG TIN TÀI LIỆU
Thông tin cơ bản
Định dạng
Số trang
58
Dung lượng
1,48 MB
Nội dung
Chapter Additional Control Structures Chapter Topics ● ● ● ● Switch Statement for Multi-Way Branching Do-While Statement for Looping For Statement for Looping Using break and continue Statements Chapter Topics ● ● ● Additional C++ Operators Operator Precedence Type Coercion in Arithmetic and Relational Precedence Switch Statement The Switch statement is a selection control structure for multi-way branching switch (IntegralExpression) { case case Constant1 : Statement(s); Constant2 : Statement(s); // optional // optional default : Statement(s); } // optional // optional Example of Switch Statement float weightInPounds = 165.8; char weightUnit; // User enters letter for desired weightUnit switch (weightUnit) { case ‘P’ : case ‘p’ : cout