计算n~m之间的数的和

#include
using namespace std;
int main()
{
    int n,m;
    cout<<"please enter the first number:"<     cin>>n;
    cout<<"please enter the last number:"<     cin>>m;
    while(n>m)
    {
        cout<<"The order is wrong,please input the number again"<         cout<<"please enter the first number:"<         cin>>n;
        cout<<"please enter the last number:"<         cin>>m; 
    }
    int sum=0;
    for(int i =n;i<=m;i++)
    {
        sum+=i;
    }
    cout<<"the sum is "<     return 0;
    system("pause");
}
 
 

你可能感兴趣的:(信息学奥赛,c++,蓝桥杯,开发语言)