/*
中华人民共和国公民身份证号码组成规则是前4位是代表省份和地区(例如4201代表湖北省武汉市),最后一位代表性别(1或3代表男性)。编写一个程序,通过身份证号码判断某人是否是武汉人以及其性别。(Objective-C)
*/
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
char input[100];
NSLog(@"输入身份证号码>>>");
scanf("%s",input);
NSMutableString *str = [NSMutableString stringWithFormat:@"%s",input];
BOOL wh = [str hasPrefix:@"4201"];
if (wh) {
NSLog(@"武汉人");
}else{
NSLog(@"不是武汉人");
}
BOOL gender1 = [str hasSuffix:@"1"];
BOOL gender2 = [str hasSuffix:@"3"];
if (gender1||gender2) {
NSLog(@"男性");
}else{
NSLog(@"女性");
}
}
return 0;
} |
|