标签:main hit code turn ios mes color 整数 iostream
给定两个整数A和B,输出从A到B的所有整数以及这些数的和。
输入在一行中给出2个整数A和B,其中?100≤A≤B≤100,其间以空格分隔。
首先顺序输出从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 <cstdio> using namespace std; int main() { int a, b; cin >> a >> b; int temp = a, sum = 0; while(temp <= b) { for(int j = 0; j < 5 && temp <= b; j++) { printf("%5d", temp); sum += temp; temp++; } cout << endl; } cout << "Sum = " << sum; return 0; }
标签:main hit code turn ios mes color 整数 iostream
原文地址:https://www.cnblogs.com/Frances-CY-FKYM/p/10293439.html