码迷,mamicode.com
首页 > 编程语言 > 详细

一个整数123456789,从末尾开始依次放入到数组中,遍历出来

时间:2016-01-09 16:48:38      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

#import <Foundation/Foundation.h>

#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String])

 

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

    @autoreleasepool {

        NSMutableString *mustr=[[NSMutableString alloc]init];

        

        int i=123456789;

        NSString *stringInt = [NSString stringWithFormat:@"%d",i];

        

        mustr=[NSMutableString stringWithString:stringInt];

        NSMutableArray *arr=[[NSMutableArray alloc]init];

        NSRange rang;

        

      

 

        for (int j=mustr.length-1; j+1 != nil; j--) {

            

            rang.location=j;

            

            rang.length=1;

            

            NSString *newStr3=[mustr substringWithRange:rang];

            

            //NSLog(@"%@",newStr3);

            

            [arr addObject:newStr3];

        }

        NSLog(@"输出结果为:");

    

        for(NSDictionary *dic in arr){

        

            NSLog(@"%@",dic);

        }

    

    }

    return 0;

}

 

一个整数123456789,从末尾开始依次放入到数组中,遍历出来

标签:

原文地址:http://www.cnblogs.com/shaowenlong/p/5116641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!