C++ //练习 1.11 编写程序,提示用户输入两个整数,打印出这两个整数所指定的范围内的所有整数。

发布时间:2024年01月18日

C++ Primer(第5版) 练习 1.11

练习 1.11 编写程序,提示用户输入两个整数,打印出这两个整数所指定的范围内的所有整数。

环境:Linux Ubuntu(云服务器)
工具:vim

?

代码块
/*************************************************************************
	> File Name: ex1.11.cpp
	> Author: 
	> Mail: 
	> Created Time: Thu 18 Jan 2024 09:37:38 AM CST
 ************************************************************************/

#include<iostream>
using namespace std;

int main(){
    int start, end;
    cout<<"Enter start and end numbers: ";
    cin>>start>>end;
    if(start < end){
        while(start < end - 1){
            ++start;
            cout<<start<<" ";
        }
        cout<<endl;
    }
    else{
        while(start > end - 1){
            --start;
            cout<<start<<" ";
        }
        cout<<endl;
    }
    return 0;
}
运行结果显示如下

在这里插入图片描述

文章来源:https://blog.csdn.net/navicheung/article/details/135667084
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。