91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++的程序流程結構是什么

發布時間:2022-02-16 09:11:19 來源:億速云 閱讀:96 作者:iii 欄目:開發技術

這篇文章主要介紹了C++的程序流程結構是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇C++的程序流程結構是什么文章都會有所收獲,下面我們一起來看看吧。

    前言

    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;
    }

    C++的程序流程結構是什么

    #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的時候,執行效果如下:

    C++的程序流程結構是什么

    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++的程序流程結構是什么

    隨機數的生成: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&hellip;while循環語句

    語法:

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

    與while的區別:do&hellip;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&hellip;while 練習案例:

    C++的程序流程結構是什么

    #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 練習案例

    C++的程序流程結構是什么

    #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 嵌套循環

    用法:循環中再使用循環

    C++的程序流程結構是什么

    #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;
    }

    嵌套循環案例

    C++的程序流程結構是什么

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

    關于“C++的程序流程結構是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“C++的程序流程結構是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    c++
    AI

    永嘉县| 将乐县| 额济纳旗| 城步| 湖南省| 泉州市| 周至县| 额敏县| 彭州市| 乐安县| 达孜县| 兰溪市| 宣恩县| 且末县| 遂川县| 台湾省| 宝坻区| 肇源县| 延寿县| 靖江市| 宁都县| 凤城市| 铁岭县| 遵化市| 祁连县| 道真| 蓬安县| 许昌市| 连城县| 山西省| 马公市| 神农架林区| 宣化县| 江北区| 乌兰察布市| 辛集市| 临沂市| 精河县| 武邑县| 建昌县| 西峡县|