iOS - 一个数是另一个数的整数倍
2016-07-27 本文已影响425人
Cdream
//ios oc 判断输入的数是否是另一个的整数倍
-(BOOL)judgeStr:(NSString *)str1 with:(NSString *)str2
{
int str1Int=[str1 intValue];
double str2Double=[str2 doubleValue];
int str2Int=[str2 intValue];
if (str2Double/str1Int-str2Int/str1Int > 0) {
return NO;
}
return YES;
}