title

C code posted by author
created at 08 Oct 20:38

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <Foundation/NSObject.h>

@interface Fraction: NSObject {
    int numerator;
    int denominator;
}

-(void) print;
-(void) setNumerator: (int) n;
-(void) setDenominator: (int) d;
-(int) numerator;
-(int) denominator;
@end
241 Bytes in 2 ms with coderay