标签:class 内存 pid enter hellip page 一个 problem ref
每行为两个数a,b(0<a,b<=10000)
while(~scanf("%d%d",&a,&b)){}可以自动终止读入
186 6907
0 2475
39 3742
127 2546
195 8529
1 485
155 4754
23839573 3064050 7002412 3234330 36357270 117855 11290700
题解:a+……+b=(a+b)*(b-a+1)/2
代码如下
#include<iostream>
using namespace std;
main()
{
int a,b,i,j,k;
while (cin>>a>>b)
{
j=(a+b)*(b-a+1);
k=j/2;
cout << k<<endl;
}
}
标签:class 内存 pid enter hellip page 一个 problem ref
原文地址:https://www.cnblogs.com/false0/p/11617107.html