返回列表 發帖

[隨堂測驗] 有哪些因數 (二) - 共有幾個因數

本帖最後由 鄭繼威 於 2023-3-24 20:36 編輯

有哪些因數 (一)
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.         re:
  6.         cout<<"請輸入一正整數:";
  7.         int x,counter=0,sum=0;
  8.         cin>>x;
  9.         //for迴圈
  10.         //1~x
  11.         cout<<x<<"的因數:";
  12.         for(int i=1;i<=x;i++){
  13.                 //判斷有沒有整除
  14.                 if(x%i==0){
  15.                         //餘數為0代表整除
  16.                         cout<<i<<" ";
  17.                         counter++;        //算有幾次的
  18.                 }
  19.         }
  20.         cout<<endl;
  21.         cout<<"總共有"<<counter<<"個因數!"<<endl;

  22.         system("pause");
  23.         goto re;
  24.         return 0;
  25. }
複製代碼

此帖僅作者可見
Attention Seeker </3

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表