C++的程序流程結構你瞭解多少

前言

C/C++支持最基本的三種程序運行結構:順序結構選擇結構循環結構

在這裡插入圖片描述

順序結構就是順著寫代碼,不想多說。

1 選擇結構

1.1 if語句(和C沒啥不一樣)

作用:執行滿足條件的語句

if語句的三種形式:

單行格式if語句

語法:

 if(條件){條件滿足執行的語句}
#include<iostream>
using namespace std;
int main()
{
	//用戶輸入分數,如果分數大於600,視為考上一本大學,在屏幕上輸出
	//1.用戶輸入分數
	int score = 0;
	cout << "請輸入一個分數:" << endl;
	cin >> score;
	cout << "您輸入的分數為:" << score << endl;
	//2.判斷
	if (score > 600)
	{
		cout << "恭喜您考上瞭一本大學" << endl;
	}
	system("pause");
	return 0;
}

多行格式if語句

語法:

if(條件){條件滿足執行的語句}else{條件不滿足執行的語句}
#include<iostream>
using namespace std;
int main()
{
	//1.用戶輸入分數
	int score = 0;
	cout << "請輸入一個分數:" << endl;
	cin >> score;
	cout << "您輸入的分數為:" << score << endl;
	//2.判斷
	if (score > 600)
	{
		cout << "恭喜您考上瞭一本大學" << endl;
	}
	else
	{
		cout << "您沒有考上一本大學,請再接再厲" << endl;
	}
	system("pause");
	return 0;
}

多條件的if語句

語法:

 if(條件1){條件1滿足執行的語句}else if(條件2){條件2滿足執行的語句}... else{都不滿足執行的語句}
#include<iostream>
using namespace std;
int main()
{
	//1.用戶輸入分數
	int score = 0;
	cout << "請輸入一個分數:" << endl;
	cin >> score;
	cout << "您輸入的分數為:" << score << endl;
	//2.判斷
	if (score > 600)
	{
		cout << "恭喜您考上瞭一本大學" << endl;
	}
	else if (score > 500)
	{
		cout << "恭喜您考上瞭二本大學" << endl;
	}
	else if (score > 400)
	{
		cout << "恭喜您考上瞭三本大學" << endl;
	}
	else
	{
		cout << "您沒有考上一本大學,請再接再厲" << endl;
	}
	system("pause");
	return 0;
}

嵌套if語句:在if語句中嵌套使用if語句,達到更精確的條件判斷

#include<iostream>
using namespace std;
int main()
{
	//1.用戶輸入分數
	int score = 0;
	cout << "請輸入一個分數:" << endl;
	cin >> score;
	cout << "您輸入的分數為:" << score << endl;
	//2.判斷
	if (score > 600)
	{
		if (score > 1000) { cout << "恭喜您考到瞭地球之外" << endl; }
		if (score > 800) { cout << "恭喜您考到瞭清北" << endl; }
		else { cout << "恭喜您考上瞭普通一本大學" << endl; }
	}
	else if (score > 500)
	{
		cout << "恭喜您考上瞭二本大學" << endl;
	}
	else if (score > 400)
	{
		cout << "恭喜您考上瞭三本大學" << endl;
	}
	else
	{
		cout << "您沒有考上一本大學,請再接再厲" << endl;
	}
	system("pause");
	return 0;
}

在這裡插入圖片描述

#include<iostream>
using namespace std;
int main()
{
	int num1 = 0;
	int num2 = 0;
	int num3 = 0;
	//用戶輸入
	cout << "請輸入小豬A的體重:" << endl;
	cin >> num1;
	cout << "請輸入小豬B的體重:" << endl;
	cin >> num2;
	cout << "請輸入小豬C的體重:" << endl;
	cin >> num3;
	cout << "小豬A的體重為:" << num1 << endl;
	cout << "小豬B的體重為:" << num2 << endl;
	cout << "小豬C的體重為:" << num3 << endl;
	//判斷
	if (num1 > num2)     //A>B
	{
		if (num1 > num3) //A>C 
		{
			cout << "\n小豬A最重" << endl;
		}
		else             //C>A
		{
			cout << "\n小豬C最重" << endl;
		}
	}
	else                 //B>A
	{
		if (num2 > num3) //B>C
		{
			cout << "\n小豬B最重" << endl;
		}
		else             //C>B
		{
			cout << "\n小豬C最重" << endl;
		}
	}
	system("pause");
	return 0;
}

1.2 三目運算符

作用:通過三目運算符實現簡單的判斷

語法:

表達式1?表達式2:表達式3

解釋:如果表達式1為真:執行表達式2,並返回表達式2的結果。

如果表達式1為假:執行表達式3,並返回表達式3的結果。

在C++中三目運算符如果後面的表達式是變量,則返回的是變量,並不是變量的值,也就是說可以繼續對變量進行操作。

#include<iostream>
using namespace std;
int main()
{
	int a = 10;
	int b = 50;
	int c = 0;
	c = (a > b) ? a : b;
	cout << "c = " << c << endl;
	//在C++中三目運算符如果後面的表達式是變量,則返回的是變量,並不是變量的值,也就是說可以繼續對變量進行操作
	(a > b ? a : b) = 100;
	cout << "a = " << a << endl;
	cout << "b = " << b << endl;
	system("pause");
	return 0;
}

1.3 switch語句

作用:執行多條件分支語句

語法:

switch(表達式){case 結果1 : 執行語句;break; case 結果2 : 執行語句;break; ... default : 執行語句;break;}break可以不加,不加break的時候程序會一直向下執行,即如果執行瞭結果2的執行語句,那麼結果3、結果4...的執行語句都會被執行。switch(表達式)
{case 結果1 : 執行語句;break;
 case 結果2 : 執行語句;break;
 ...
 default : 執行語句;break;
}
break可以不加,不加break的時候程序會一直向下執行,即如果執行瞭結果2的執行語句,那麼結果3、結果4...的執行語句都會被執行。

優點:結構清晰,執行的效率高;

缺點:case所接的結果必須是整型或者字符型,且不能判斷區間。

#include<iostream>
using namespace std;
int main()
{
	int score = 0;
	cout << "請給電影打分:" << endl;
	cin >> score;
	/* 5以下:爛片
	   5 ~ 6:一般
	   7 ~ 8:較好
	   9~ 10:經典
	*/
	switch (score)
	{
	case 10:cout << "經典" << endl; break;
	case 9:cout << "經典" << endl; break;
	case 8:cout << "較好" << endl; break;
	case 7:cout << "較好" << endl; break;
	case 6:cout << "一般" << endl; break;
	case 5:cout << "一般" << endl; break;
	default:cout << "爛片" << endl; break;
	}
	system("pause");
	return 0;
}

如果不加break的時候,執行效果如下:

在這裡插入圖片描述

2 循環結構

2.1 while 循環語句

語法:

while(循環條件){循環語句}

解釋:隻要循環條件的結果為真,就執行循環語句。

#include<iostream>
using namespace std;
int main()
{
	//在屏幕上打印0-9這10個數字
	int num = 0;
	while (num <= 9)
	{
		cout << num << endl;
		num++;
	}
	system("pause");
	return 0;

while 循環案例:

在這裡插入圖片描述

隨機數的生成:C++產生隨機數

#include<iostream>
#include<cstdlib> //可以不輸入此行,iostream間接包含瞭這裡的庫頭文件
#include<ctime>
using namespace std;
int main()
{	//srand(0)  不加此行或者使用它時,種子固定,所以產生隨機數固定。
	//種子控制產生的隨機數,所以隻需要產生隨機種子就可瞭。
	srand((int)time(0)); //利用當前系統時間產生隨機種子,把0換成NULL也行。
	int num = rand() % 100 + 1; //rand:偽隨機數,rand()%100生成0-99
	//cout << num << endl;
	int val = 0;
	while (1)
	{
		cin >> val;
		if (val > num)
		{
			cout << "您猜的數大於此數" << endl;
		}
		else if (val < num)
		{
			cout << "您猜的數小於此數" << endl;
		}
		else 
		{ cout << "恭喜您猜對瞭" << endl; break;
		}
	}
	system("pause");
	return 0;
}

2.2 do…while循環語句

語法:

do{循環語句} while(循環條件);

與while的區別:do…while會先執行一次循環語句,再判斷循環條件。

#include<iostream>
using namespace std;
int main()
{
	//死循環,因為先執行瞭do裡面的內容,所以while始終為真。
	int num = 0;
	do 
	{
		cout << num << endl;
		num++;
	} 
	while (num);
	system("pause");
	return 0;
}

do…while 練習案例:

在這裡插入圖片描述

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
	int num = 100;
	int a = 0, b = 0, c = 0;
	do
	{
		a = num / 100;       //百位
		b = (num / 10 % 10); //十位
		c = num % 10;	     //個位
		if (pow(a, 3) + pow(b, 3) + pow(c, 3) == num)
		{
			cout << num << endl;
		}
		num++;
	} while (num < 1000);
	system("pause");
	return 0;
}

2.3 for循環語句

作用:滿足循環條件,執行循環語句

語法:

for(起始表達式;條件表達式;末尾循環體){循環語句;}
#include<iostream>
using namespace std;
int main()
{
	for (int i = 0; i < 10; i++)
	{
		cout << i << endl;
	}
	system("pause");
	return 0;
}

for中的表達式記得加;

for 練習案例

在這裡插入圖片描述

#include<iostream>
using namespace std;
int main()
{	//個位有7,%10==7
	//十位有7,/10==7
	//7的倍數, %7==0
	for (int i = 1; i <= 100; i++)
	{
		if ((i % 10 == 7) || (i / 10 == 7) || (i % 7 == 0)) 
		{
			cout << "敲桌子" << endl;
		}
		else { cout << i << endl; }
	}
	system("pause");
	return 0;
}

2.4 嵌套循環

用法:循環中再使用循環

在這裡插入圖片描述

#include<iostream>
using namespace std;
int main()
{	
	for (int i = 0; i < 10; i++)
	{
		for (int j = 0; j < 10; j++)
		{
			cout << "* " ;
		}
		cout << endl;
	}
	system("pause");
	return 0;
}

嵌套循環案例

在這裡插入圖片描述

#include<iostream>
using namespace std;
int main()
{
	for (int i = 1; i < 10; i++)
	{
		for (int j = 1; j <=i ; j++)
		{
			cout << j << "*" << i << "="<< j * i <<	"\t";
		}
		cout << endl;
	}
	system("pause");
	return 0;
}

3 跳轉語句

3.1 break語句

作用:跳出選擇結構(實際上隻有switch語句用得到)或者循環結構。

具體而言也就三種:

  • 出現在switch語句:終止case、跳出switch
  • 出現在循環語句:跳出當前的循環
  • 出現在嵌套循環中:跳出最近的內層循環(此break所屬循環)。

前兩個很簡單,隻看第三個情況,對乘法口訣表的代碼稍微進行修改即可:

#include<iostream>
using namespace std;
int main()
{
	for (int i = 1; i < 10; i++)
	{
		for (int j = 1; j < 10; j++)
		{
			cout << j << "×" << i << "=" << j * i << "\t";
			if (i == j)
			{
				break;
			}
		}
		cout << endl;
	}
	system("pause");
	return 0;
}

3.2 continue語句

作用:跳過本次循環中餘下的執行語句,直接執行下一次循環。

#include<iostream>
using namespace std;
int main()
{
	for (int i = 1; i <= 10; i++)
	{
		if (i == 3 || i == 7) { continue; }
		cout << i << endl;
	}
	system("pause");
	return 0;
}

3.3 goto語句

作用:可以無條件跳轉語句

語法:

goto 標記;

解釋;如果標記的名稱存在,執行到goto語句時,會跳轉到標記的位置

#include<iostream>
using namespace std;
int main()
{
	cout << "1.xxxx" << endl;
	cout << "2.xxxx" << endl;
	goto Flag;
	cout << "3.xxxx" << endl;
Flag: cout << "4.xxxx" << endl;
	cout << "5.xxxx" << endl;
	system("pause");
	return 0;
}

一般不建議使用goto,因為標記太多,會導致代碼及其混亂。

總結

本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!     

推薦閱讀: