这是她 发表于 2020-4-22 21:13:17

C++旅程第三站——逃不出来的循环

本帖最后由 这是她 于 2020-4-22 21:11 编辑

When everything seems to be going against you,remember that the airplane takes off against the wind,not with it.

循环来喽!!!!!!!!!!!{:5_91:}




#include <iostream>
#include <string>

using namespace std;

int main()
{
        int bus;//可以在外面先定义变量
        int track,trolley = 10,coach = 20;
        string station;
       
        for (int bus = 0; bus < 10; bus++)//看这里,也可以在for循环这里定义变量;当条件不满足第二个表达式的时候结束循环;更新用于测试的值。
        {
                cout << "Look" << endl;
                cout << "The quantity of bus is : " << bus << endl;
        }//对于for循环,如果是循环体是一条语句-->可以不使用大括号括起来;否则-->要用大括号将循环体括起来
        //花括号括起来的代码块将被视为一条语句
       
        int i = for (int a = 10; a < 0; a--)
                cout << a;//一定要注意一下不能把for循环赋值给变量
       
        cout << "Please enter the track : " << endl;
        cin >> track;
        for (int railway = 2; railway < 20 ; railway += track)
                cout << railway << endl;//track是步长,按照步长来进行循环计数的增减
       
        cout << "Enter a station :";
        cin >> station;
       
        for (int b = station.size()-1;b >= 0;b--)//使用for循环访问字符串
             cout << station;
        cout << "\nBye.\n";
       
        int taxi =
        {
                {45,75,22,75,84},
                {36,63,26,17,72},
                {37,83,85,13,75},
                {53,35,77,56,67}
        };//初始化二维数组:使用逗号分隔的一维数组初始化用花括号括起来组成
       
        for(int x=0;x < 4;x++)
        {
                for(int y = 0;y < 5;y++)
                   cout << taxi << "\t";
                cout << endl;
        }//使用嵌套循环-->就是在一个循环里在装上一个循环
       
        while(trolley > 5)//while循环:若表达式为0或false时,跳出循环 ——先判断在执行
        {
                cout << "The quantity of trolley is : " << trolley << endl;
                trolley -= 1;
        }
       
        do//先执行循环体,在判断表达式是否满足条件;false——>循环中止
        {
                cout << coach << endl;
                coach += 2;
        }while(coach < 32);
       
        return 0;
}
渣渣一个{:10_245:},大佬们手下留情{:10_254:}
      留个建议,消除霉运{:10_256:}

SugarCane88 发表于 2020-4-23 11:49:14

“int i = for (int a = 10; a < 0; a--)”这句用的少些,谢谢分享code。

这是她 发表于 2020-4-23 19:25:11

SugarCane88 发表于 2020-4-23 11:49
“int i = for (int a = 10; a < 0; a--)”这句用的少些,谢谢分享code。

感谢您的建议{:7_123:}但我这个是把for循环赋值给一个变量,下面还有一个cout语句-----这样应该是不可行的吧,望指教{:10_254:}
页: [1]
查看完整版本: C++旅程第三站——逃不出来的循环