1. Trang chủ
  2. » Công Nghệ Thông Tin

programming and problem solving with c++ 6th by dale ch07

58 165 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

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

Ngày đăng: 06/02/2018, 10:07

TỪ KHÓA LIÊN QUAN

w