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;
}
沒關係,我想通了 – 2012-08-11 00:26:57