IOS_______99乘法表

//

//  main.m

//  C_Test

//

//  Created by Ibokan on 12-7-10.

//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.

//


//#import

//

//int main (int argc, const char * argv[])

//{

//

//    @autoreleasepool {

//        

//        // insert code here...

//        NSLog(@"Hello, World!");

//        

//    }

//    return 0;

//}


#import

int main(int argc,const char *argv[])

{

    @autoreleasepool{

        

       for(int x=1;x<10;x++)

        {

           for(int y=1;y<=x;y++)

            {

               printf("%d*%d=%d ",x,y,x*y);

              

                

            }

           printf("\n");

        }

            

    }

   return 0;

   

}


你可能感兴趣的:(iOS7)