我正在编写我的对象第一个应用程序,但我不明白为什么编译器会给出我的错误。(使用 int 代码工作......)
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
// 1st var
NSLog(@"Hi, %f World!", res(1.0f, 2.0f, 3.0f));
}
return 0;
}
float res (float a, float b, float c)
{
float res=a+b+c;
return res;
}