一、身份證號碼驗證
題目描述:
我國公民的身份證號碼特點如下:
1、 長度為18位;
2、 第1~17位只能為數字;
3、 第18位可以是數字或者小寫英文字母x。
4、 身份證號碼的第7~14位表示持有人生日的年、月、日信息。
例如:511 002 1988 08 08 0111或51100219880808011x。
請實現身份證號碼合法性判斷的函數。除滿足以上要求外,需要對持有人生日的年、月、日信息進行校驗。年份大於等於1900年,
小於等於2100年。需要考慮閏年、大小月的情況。
所謂閏年,能被4整除且不能被100整除 或 能被400整除的年份,閏年的2月份為29天,非閏年的2月份為28天。
其他情況的合法性校驗,考生不用考慮。
int verifyID(char* inID)
函數返回值:
1) 如果身份證號合法,返回0;
2) 如果身份證號長度不合法,返回1;
3) 如果身份證號第1~17位含有非數字的字符,返回2;
4) 如果身份證號第18位既不是數字也不是英文小寫字母x,返回3;
5) 如果身份證號的年信息非法,返回4;6-9
6) 如果身份證號的月信息非法,返回5;10-11
7) 如果身份證號的日信息非法,返回6(請注意閏年的情況);12-13
【注】除成功的情況外,以上其他合法性判斷的優先級依次降低。也就是說,如果判斷出長度不合法,直接返回1即可,不需要再做其他合法性判斷。
二、手機號碼驗證
問題描述:
我國大陸運營商的手機號碼標准格式為:國家碼+手機號碼,例如:8613912345678。特點如下:
1、 長度13位;
2、 以86的國家碼打頭;
3、 手機號碼的每一位都是數字。
請實現手機號碼合法性判斷的函數要求:
1) 如果手機號碼合法,返回0;
2) 如果手機號碼長度不合法,返回1
3) 如果手機號碼中包含非數字的字符,返回2;
4) 如果手機號碼不是以86打頭的,返回3;
【注】除成功的情況外,以上其他合法性判斷的優先級依次降低。也就是說,如果判斷出長度不合法,直接返回1即可,不需要再做其他合法性判斷。
要求實現函數:
int verifyMsisdn(char* inMsisdn)
【輸入】 char* inMsisdn,表示輸入的手機號碼字符串。
【輸出】 無
【返回】 判斷的結果,類型為int。
示例
輸入: inMsisdn = “869123456789“
輸出: 無
返回: 1
輸入: inMsisdn = “88139123456789“
輸出: 無
返回: 3
輸入: inMsisdn = “86139123456789“
輸出: 無
返回: 0
(給的例子都不是13位,應該都返回1)
三、郵箱合法性驗證
Title Description:
Compile a function for verifying validity of a mailbox address. The mailbox address is valid if the following conditions are met:
1. 地址中只能有一個 '@' .
2.最後三位必須是 ".com".
3. 字符之間沒有空格.
4.有效地字符: 1~9, a~z, A~Z, '.', '@', '_'.
返回結果1表示該郵箱是合法的. 返回 0 表示該郵箱不合法.
To complete the following function:
void vConvertMsg(char *pInputStr, long lInputLen, char *pOutputStr);
[Input]
char *pInputStr: a pointer pointing at an array
long lInputLen: length of the array
char *pOutputStr: output result displayed as character strings. '1' indicates a valid mailbox address. '0' indicates an invalid mailbox address. '\0' indicates the end of the character string.
[Return] None
[Note] You only need to complete the function algorithm, without any IO output or input.
Example
Input: [email protected]
Return: 1
Input: aa@[email protected]
Return: 0
實現如下:
一、身份驗證 int isLeapYear(int year) { if ((year%4==0 && year%100!=0) || year%400==0) { return 1; } else return 0; } int verifyID(char* inID) { int len=strlen(inID); if (len!=18) { return 1; } for (int i=0;i<len-1;i++) { if (inID[i]<'0' || inID[i]>'9') { return 2; } } if (((inID[len-1]>='0' && inID[len-1]<='9') || inID[len-1]=='x')==false) { return 3; } string temp=inID; string temp1=temp.substr(6,4); int year=0; for (int i=0;i<4;i++) { year=year*10+temp1[i]-'0'; } //cout<<year<<" "; if (year<1900 || year>2100) { return 4; } string temp2=temp.substr(10,2); int month=0; for (int i=0;i<2;i++) { month=month*10+temp2[i]-'0'; } //cout<<month<<" "; if (month<1 || month>12) { return 5; } string temp3=temp.substr(12,2); int day=0; for (int i=0;i<2;i++) { day=day*10+temp3[i]-'0'; } //cout<<day<<" "; if (month==2) { if (isLeapYear(year)) { if (day<1 || day>30) { return 6; } } else { if (day<1 || day>29) { return 6; } } } else if (month==1 || month==3 || month==5 || month==7 || month==8 || month==10 || month==12) { if (day<1 || day>31) { return 6; } } else { if (day<1 || day>30) { return 6; } } return 0; } 二、手機號碼驗證 int verifyMsisdn(char* inMsisdn) { int len = strlen(inMsisdn); if (len!=13) { return 1; } int i=0; for (;i<len;i++) { if (inMsisdn[i]<'0' || inMsisdn[i]>'9') { return 2; } } if (inMsisdn[0]!='8' || inMsisdn[1]!='6') { return 3; } if (i==len) { return 0; } } 三、郵箱地址驗證 void vConvertMsg(char *pInputStr, long lInputLen, char *pOutputStr) { int countOfAt=0; int countOfSpace=0; int countOfError=0; int i=0; for (;i<lInputLen;i++) { if (pInputStr[i]=='@') { countOfAt++; } if (pInputStr[i]==' ') { countOfSpace++; } if (((pInputStr[i]>='1' && pInputStr[i]<='9') || (pInputStr[i]>='a' && pInputStr[i]<='z') || (pInputStr[i]>='A' && pInputStr[i]<='Z') || pInputStr[i]=='_' || pInputStr[i]=='.' || pInputStr[i]=='@')==false) { countOfError++; } } if (countOfAt!=1 || countOfSpace!=0 || countOfError!=0) { *pOutputStr=0+'0'; cout<<*pOutputStr<<endl; return; } if (pInputStr[i-1]!='m' || pInputStr[i-2]!='o' || pInputStr[i-3]!='c' || pInputStr[i-4]!='.') { *pOutputStr=0+'0'; } else *pOutputStr=1+'0'; cout<<*pOutputStr<<endl; }