美文网首页
[C++ Primer] 练习1.11

[C++ Primer] 练习1.11

作者: 和平北路 | 来源:发表于2017-02-17 13:50 被阅读0次
#include <iostream>

using std::cin;
using std::cout;
using std::endl;

int main() {
    int start = 0, end = 0, temp = 0;
    cin >> start >> end;
    if (start > end) {
        temp = start;
        start = end;
        end = temp;
    }
    while (start <= end) {
        cout << start << " ";
        ++start;
    }
    cout << endl;
}

相关文章

网友评论

      本文标题:[C++ Primer] 练习1.11

      本文链接:https://www.haomeiwen.com/subject/bazkwttx.html