Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialnirmalabasdeo
Python Development Techdegree Student 3,787 PointsNo results when I run the code even after it says it was built successfully.
I have a written some basic code for a Calculator app in objective C , just to test it. I have no programming experience so it is a learn and figure out thing but I cant seem to get it . It was able to built but I am not see any result, please advice. Thanks!
import <Foundation/Foundation.h>
@interface Calculator : NSObject
@property (nonatomic) float numerator; @property (nonatomic) float denominator; @property (nonatomic) float total;
-(void)add; -(void)divide;
@end
import "Calculator.h"
@implementation Calculator
-(void) add{
self.total=self.numerator+self.denominator;
}
-(void) divide{ self.total=self.numerator/self.denominator; } /// -(float)divideOp { float result=0; @try {
if (self.denominator != 0) {
result = (self.numerator / self.denominator);
} else {
result = NAN;
}
} @catch (NSException *exception) {
// deal with the exception
NSLog(@"Can't divide by 0!");
}
return result;
}
@end
import <UIKit/UIKit.h>
import "AppDelegate.h"
import "Calculator.h"
int main(int argc, char * argv[]) { @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
Calculator * calculator1 =[[Calculator alloc]init]; --- (Here it got a popup that code will never execute)
calculator1.numerator=10;
calculator1.denominator=5;
[calculator1 add];
[calculator1 divide];
}
}