- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a, b;
- int ans=0;
- re:
- ans=0;
- cout<<"請輸入第一個數: ";
- cin>>a;
- cout<<"請輸入第二個數: ";
- cin>>b;
- if(a<b)
- {
- for(int i=a;i<=b;i++)
- {
- ans+=i;
- }
- cout<<"從"<<a<<"到"<<b<<"所有整數的總和為: "<<ans<<endl;
- }
- else
- {
- for(int i=b;i<=a;i++)
- {
- ans+=i;
- }
- cout<<"從"<<a<<"到"<<b<<"所有整數的總和為: "<<ans<<endl;
- }
- cout<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |