(C++知识实例)_2 C++for循环

1、for循环打印字符串

// for循环打印字符串
#include 
using namespace std;
int main()
{
    for(int i=1;i<=3;i++)       // 循环条件
    {
        cout << "Hello" << endl;// 循环体
    }
    return 0;
}

在这里插入图片描述

2、for循环倒计时

(1)、动态倒计时

// 动态倒计时
#include 
#include     // 苹果电脑用户将头文件改为 #include 
using namespace std;
int main()
{
    int n;
    cout << "请输入倒计时的时间(s):";
    cin >> n;
    for (int i=n;i>=0;i--)
    {
        system("cls");         // 刷新屏幕,苹果电脑用户将刷新命令改为system("clear");
        cout << i << endl;
        Sleep(1000);           // 休眠命令,苹果电脑用户将等待命令改为sleep(1);
    }
    return 0;
}

(2)、直接打印式倒计时

// 直接打印式倒计时
#include 
#include     // 苹果电脑用户将头文件改为 #include 
using namespace std;
int main()
{
    int n;
    cout << "请输入倒计时的时间(s):";
    cin >> n;
    for (int i=n;i>=0;i--)
    {
        cout << i << endl;
    }
    return 0;
}

(C++知识实例)_2 C++for循环_第1张图片

3、for循环数学计算

// 输出1--10000之间7的倍数
#include 
using namespace std;
int main()
{
    for (int i=7;i<=10000;i+=7) // 起始值、终止值、步进值
    {
        cout << i << " ";
    }
    cout << endl;
    return 0;
}`

(C++知识实例)_2 C++for循环_第2张图片

你可能感兴趣的:(C++)