OC 예비 처리 프로그램

//
//  Fraction.h
//  OC12     
//
//  Created by Zoujie on 15/9/17.
//  Copyright (c) 2015  Zoujie. All rights reserved.
//

//          
#define kTURE 1
#define kFALSE 0
#define PI 3.141592
#define MAXIMUM_DATA_VALUES 1000


//       
#define TWO_PI 2.0 * 3.141592654
#define AND &&
#define OR ||
#define EQUALS ==
#define TWO_PI_Define 2.0 * PI
//   
#define IS_LEAP_YEAR(y) y%4 == 0 && y%100 !=0  || y%400==0 
#define SQUARE(x) x * x //     x     : x = y + 1
#define SQUARE_TURE(x) ((x)*(x))

#define MakeFract(x,y) ([[Fraction alloc]initWith: x over :y]) //?
#define MAX_TWO_NUMBER(a,b)  (((a)>(b)) ? (a):(b)) //       

#define IPAD //  

#import <Foundation/Foundation.h>//<>     

@interface Fraction : NSObject
-(void)defineProduct;
-(double) area;
-(double) circumference;
-(void)initWith:x over:y;
@end
//
//  Fraction.m
//  OC12     
//
//  Created by Zoujie on 15/9/17.
//  Copyright (c) 2015  Zoujie. All rights reserved.
//

#import "Fraction.h"

@implementation Fraction
{
    int radius ;//  
}
-(void)defineProduct
{
    int gameover = kFALSE;
    if (gameover == kFALSE)
    {
        gameover = kTURE;
    
    }
    
    if (gameover >0 AND (gameover <= 1)){}
    if (gameover >0 OR (gameover <= 1)){}
    
}

-(double) area
{
    radius = 10;
    return PI * radius * radius;
}

-(double) circumference
{

    return 2.0 * PI * radius;
    return TWO_PI * radius;
    return TWO_PI_Define * radius;
}

-(void)initWith:(id)x over:(id)y
{

    return ;
}


@end
//
//  main.m
//  OC12     
//
//  Created by Zoujie on 15/9/17.
//  Copyright (c) 2015  Zoujie. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "Fraction.h"
#import <limits.h>
#import <float.h>

int main(int argc, const char * argv[]) {
    @autoreleasepool {
      
        if  (IS_LEAP_YEAR(2000))
        {
            NSLog(@"    ");
        }
        
        NSLog(@"%d",MAX_TWO_NUMBER(100, 99));
    }
    return 0;
}

#pragma mark     

#ifdef IPAD //IPAD      
#define kImageFile @"bardHD.png"
#else
# define kImageFile @"barn.png"
#endif

//    
#if 0
#endif

#undef   
//                 
#undef IPAD  //  IPAD  #ifdef IPAD #if defined(IPAD)     FALSE

좋은 웹페이지 즐겨찾기