zoukankan      html  css  js  c++  java
  • 考核7

    #import <Foundation/Foundation.h>

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

        @autoreleasepool {

        //1.以下是身份证号,输出身份证人的性别,名字

           // NSString *idCard=@210423198809040427;

            //身份证倒数#2位是偶数则为女生

            NSString *idCard=@"210423198809040427";

            NSRange strc=NSMakeRange(16, 1);

            NSRange stcr1=NSMakeRange(6, 4);

            NSString *sing=[idCard substringWithRange:strc];

            NSString *sing1=[idCard substringWithRange:stcr1];

            int ste=[sing intValue];

            int ste1=[sing1 intValue];

            if (ste%2==0) {

                NSLog(@"女 年龄:%d",2016-ste1);

            }else{

                NSLog(@"男 年龄:%d",2016-ste1);

            } 

        //2.将字典的key从Z->A排序,按排序后的key的顺序,输出value,将value按字符串输出

            NSDictionary *dict=@{@"R":@"e",

                                 @"T":@"e",

                                 @"D":@"b",

                                 @"S":@"u",

                                 @"K":@"a",

                                 @"A":@"s",

                                 @"O":@" ",

                                 @"N":@"p",

                                 @"B":@"b",

                                 @"J":@"u",

                                 @"F":@" ",

                                 @"U":@"t",

                                 @"H":@"l",

                                 @"E":@"j",

                                 @"Z":@"s",

                                 };

            NSDictionary *idc=[NSDictionary dictionaryWithDictionary:dict];

            NSArray *str1=[idc allKeys];

            str1=[str1 sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {

                return [obj2 compare:obj1];

            }];

            for (id str in str1) {

                NSLog(@"%@",str);

            }

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

            for(id ser in str1){

                [arr1 addObject:[dict objectForKey:ser]];

            }

            NSLog(@"%@",arr1);

            NSString *Array=[arr1 componentsJoinedByString:@""];

            NSLog(@"%@",Array);    

        }

        return 0;

    }

  • 相关阅读:
    Socket 端口网络监听
    java android 将小数度数转换为度分秒格式
    android popupwindow 位置显示
    【转】习大大的“黄土情结”:中国要富,农民必须富
    【转】中央农村工作会议首次提出人的新农村
    【转】【CDC翻客】移动端App测试实用指南
    【转】测试,人人都是产品经理之测试产品的选择和创造
    【转】易用性测试
    【转】功能测试的经验总结
    【转】在做性能测试之前需要知道什么
  • 原文地址:https://www.cnblogs.com/j-h-t-123-n/p/5116179.html
Copyright © 2011-2022 走看看