7-14 求整数段和

给定两个整数A和B,输出从A到B的所有整数以及这些数的和。

输入格式:

输入在一行中给出2个整数A和B,其中−,其间以空格分隔。

输出格式:

首先顺序输出从A到B的所有整数,每5个数字占一行,每个数字占5个字符宽度,向右对齐。最后在一行中按Sum = X的格式输出全部数字的和X

输入样例:

-3 8
 

输出样例:

   -3   -2   -1    0    1
    2    3    4    5    6
    7    8
Sum = 30




#include<iostream>
#include<iomanip>
using namespace std;
int main() {
    int a;
    int b;
    int i = 0;
    int s = 0;
    cin >> a >> b;
    for (;a <= b;a++) {
        cout <<setw(5)<< a;
        i++;
        if (i % 5 == 0 ||a==b)cout << endl;
        s = s + a;
    }
    cout <<"Sum = "<< s;
}





posted @ 2020-03-25 19:41  罗霖锦  阅读(186)  评论(0)    收藏  举报