返回列表 發帖

[作業] 因數分解 (一)

本帖最後由 陳品肇 於 2019-6-15 10:15 編輯

設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.     int i = 1,n;

  7.     cout<<"請輸入一個數: ";   
  8.     cin>>n;
  9.     while(i<=n)
  10.     {
  11.        if(n%i==0)
  12.        {
  13.            cout<<i<<" ";
  14.        }
  15.        i++;
  16.     }

  17.     system("pause");
  18.     return 0;
  19. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表