2012-08-10 66 views
0

我想要做的是找到數字的因素。爲了做到這一點,我創建了兩個變量,爲了檢查它是否是數字的一個因素,我們將數字除以整數。我要求你告訴我的是如何檢查兩個數的除法是否是整數。如何在Xcode控制檯中檢查答案是否爲整數

這裏是我的代碼:

int x, y; 
     // insert code here... 
     NSLog(@"Factors of..."); 

     scanf("%i", &x); 

     NSLog(@"Here are the factors: %i", x/y); 

     for (y=0; y <= x; y++) { 
      if (x % y = //does not or equals integer){ 

      } 
     } 

    } 
    return 0; 
} 
+0

沒關係,我想通了 – 2012-08-11 00:26:57

回答

0

這裏是我的方法:

int x, y; 
     //insert code here... 
     NSLog(@"Welcome to the factors program. Type in your integer. Up to a 15 digit number!"); 

     scanf("%i", &x); 

     for (y = 1; y <= x; y ++) { 

      if (x % y == 0){ 

      NSLog(@"%i", y); //factors program 

      } 
      else{ 

      } 
     } 


    } 
    return 0; 
}