bc_test_vc:The sum of the integers from 1 to 100 is 5050 .

版权声明:本博客原创文章,版权归本博主所有。非经本博主允许,不得用于盈利性质的场合。 https://blog.csdn.net/cwzdscs/article/details/80063006
//可以随便更改的test函数,每次用完了就丢弃,随时可以改。
void test(void)
{
	int in1,in2,sum;
	cout<<"Input one integer:"<<endl;
	cin>>in1;


	cout<<"Input the second integer:"<<endl;
	cin>>in2;


	if(in1>in2)
	{
		int i;
		i=in1;
		in1=in2;
		in2=i;
	}


	sum=0;


	int i;
	for(i=in1;i<=in2;i++)
	{
		sum+=i;
	}
	cout<<"The sum of the integers from "<<in1<<" to "<<in2<<" is "<<sum<<" ."<<endl;
}

猜你喜欢

转载自blog.csdn.net/cwzdscs/article/details/80063006