首頁 > 軟體

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

2022-02-15 19:00:41

前言

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,因為標記太多,會導致程式碼及其混亂。

總結

本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!     


IT145.com E-mail:sddin#qq.com