可能重复:
Is there a convenient function in objective-c / coca-touch to find a lowest number?
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int a=10,b=5,c;
c=min(a,b);
NSLog(@"min:%d",c);
[pool drain];
return 0;
}
我必须计算两个数字的最小值。 我们可以使用if(a&gt; b)来找出最小值。但是有没有任何预定义函数来计算两个数字的最小值。