《C++大学教程》 第九版 课后习题 5.25

《C++大学教程》 第九版 课后习题 5.25,第1张

《C++大学教程》 第九版 课后习题 5.25

转载的老师发的答案,关注我,随时更新答案,如果来不及了,可以私信我,我发给你们相应的答案

#include 
using namespace std;
int main()
{
    int counter{1};
    bool exit{false};
    while (!exit)
    {
        std::cout << counter << " ";
        ++counter;
        exit = (counter == 5);
    }
    cout << endl << "Broke out of loop at count = " << counter << endl;
    return 0;
}

下面是运行结果:

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5650623.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存