21xrx.com
2024-11-06 00:34:47 Wednesday
登录
文章检索 我的文章 写文章
C++语法——常用语句类型
2023-07-12 09:26:42 深夜i     --     --
变量声明和定义 控制流语句(if for while) 函数定义和调用 数组定义和使用

C++语言是一种高级编程语言,它拥有强大的功能和灵活的语法。其中,常用语句类型是C++语言的基础。本文将介绍C++语法中的常用语句类型。

一、顺序语句

顺序语句是程序中最简单的语句,即按照编写的顺序依次执行。例如:


#include <iostream>

using namespace std;

int main()

{

  cout << "Hello, World!" << endl;

  cout << "C++ is amazing!" << endl;

  return 0;

}

以上代码中,两条cout语句就是一个典型的顺序语句。程序按顺序执行,输出结果为:


Hello, World!

C++ is amazing!

二、选择语句

选择语句用于在程序执行过程中进行选择。常见的选择语句有if语句和switch语句。

if语句的基本格式为:


if ( condition )

execute this block of code

else

execute this block of code

例如:


int num = 5;

if (num > 10)

  cout << "num is greater than 10" << endl;

else

  cout << "num is less than or equal to 10" << endl;

以上代码中,if语句判断num是否大于10,如果是则输出“num is greater than 10”,否则输出“num is less than or equal to 10”。

另外,switch语句的基本格式为:


switch ( variable )

  case value1:

    // code to be executed if variable == value1;

    break;

  case value2:

    // code to be executed if variable == value2;

    break;

  .

  .

  .

  default:

    // code to be executed if variable doesn't match any value;

例如:


int num = 2;

switch (num)

2 or 3" << endl;

    break;

以上代码中,switch语句判断num的值,并输出对应的结果。

三、循环语句

循环语句用于重复执行某段代码,常用的循环语句有for循环和while循环。

for循环的基本格式为:


for ( initialization; condition; iteration )

  // code to be executed repeatedly

例如:


for (int i = 0; i < 5; i++)

  cout << "i is " << i << endl;

以上代码中,for循环按照初始化变量i的值为0、循环条件i < 5、循环变量i每次增加1的方式执行,输出结果为:


i is 0

i is 1

i is 2

i is 3

i is 4

另外,while循环的基本格式为:


while ( condition )

  // code to be executed repeatedly

例如:


int i = 0;

while (i < 5)

{

  cout << "i is " << i << endl;

  i++;

}

以上代码中,while循环按照条件i < 5的方式执行,每次输出i的值并将其加1,直到i的值大于等于5为止。

总结:

C++语言中的常用语句类型包括顺序语句、选择语句和循环语句。在实际编写程序时,根据不同的需求选择不同的语句类型是非常重要的。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复