[关闭]
@songying 2019-03-06T13:57:43.000000Z 字数 511 阅读 1019

c++ 语句

c++


空语句

  1. ; // 空语句

复合语句

  1. { // 内容 }
  2. {} // 空块

控制语句

if语句

  1. if (condition1) {
  2. }
  3. else if(condition2){
  4. }
  5. else{
  6. }

switch 语句

  1. switch(condition1){
  2. case val1:
  3. case val2:
  4. default:
  5. }

循环语句

while 语句

  1. while (condition){
  2. statement
  3. }

for 语句

  1. for ( init_statement; condition; expression){
  2. statement;
  3. }
  4. //范围for语句
  5. for (declaration:expression){
  6. statement;
  7. }

do while

  1. do {
  2. statement
  3. } while (condition);

break

break 只能出现在迭代语句或switch语句内部。

continue

终止当前迭代并且立即开始下一次迭代
continue只能出现在for, while, do while 内部。

goto

不要在程序中使用goto语句,因为它使得程序既难理解,又难修改。

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注