返回列表 發帖

while迴圈-複習(一)

讓使用者輸入一整數,並計算出1到1000內所有該數字的倍數總和。
例如: 輸入為6時,6+12+18+...+996,答案為:83166
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, ans = 0, m = 0;
  7.     cout << "請輸入一整數: ";
  8.     while()
  9.     {
  10.         
  11.     }
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, ans = 0, m = 0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>n;
  9.     while(m<=1000)
  10.     {
  11.         ans=ans+m;
  12.         m=m+n;   
  13.     }
  14.     cout << "1~1000所有" << n << "的倍數總和為: " << ans << endl;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

本帖最後由 陳沁寧 於 2023-7-6 20:56 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int a = 0, i = 0, sum = 0;
  6.     cout << "請輸入一整數 : ";
  7.     cin >> a;
  8.     while(i <= 1000){
  9.         sum += i ;
  10.         i += a;
  11.     }
  12.     cout << "1~1000所有" << a << "的倍數總和為 : " << sum << endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=0, ans = 0, m = 0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>n;
  9.     while(m<1000)
  10.     {
  11.         ans+=m;
  12.         m+=n;     
  13.     }
  14.     cout<<"1~1000所有"<<n<<"的倍數總和為: "<<ans;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int b, a= 0, c= 0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>b;
  9.     while(c<=1000)
  10.     {
  11.         a=a+c;
  12.         c=c+b;   
  13.     }
  14.     cout << "1~1000所有" <<b<< "的倍數總和為: " <<a<< endl;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1.    #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, ans = 0, m = 0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>n;
  9.     while(m<=1000)
  10.     {
  11.         m=m+n;
  12.         ans=ans+m;
  13.     }
  14.     cout<<ans<<endl;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, ans = 0, m = 0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>n;
  9.     while(m<=1000)
  10.     {
  11.         m=m+n;
  12.         ans=ans+m;
  13.     }
  14.     cout<<"1到1000內所有"<<n<<"數字的倍數總和為: "<<ans<<endl;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, ans = 0, m = 0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>n;
  9.     while(m<=1000)
  10.     {
  11.         m+=n;
  12.         ans=ans+m;
  13.     }
  14.     cout<<"1~1000所有"<<n<<"的倍數總和為: "<<ans<<endl;
  15.     system ("pause");
  16.     return 0;
  17. }
複製代碼

TOP

本帖最後由 林家鉌 於 2023-7-9 21:55 編輯
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.         int a,b=0,c=0;
  6.         cout<<"pls input a number: ";
  7.         cin>>a;
  8.         while(c<1000)
  9.         {
  10.                 b=b+c;
  11.                 c+=a;
  12.         }
  13.         cout<<"\n"<<b;
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, ans = 0, m=0;
  7.     cout << "請輸入一整數: ";
  8.     cin>>n;
  9.     while(m<=1000)
  10.     {
  11.            
  12.         ans=ans+m;
  13.         m=m+n;
  14.         
  15.     }
  16.    
  17.     cout<<"1~1000所有"<<n<<"的倍數總和為: "<<ans<<endl;
  18.     system ("pause");
  19.     return 0;
  20. }
複製代碼

TOP

返回列表