PB如何根据年龄取出生日期
如题,拜谢
其实你自己写个函数就行了
for example
int uf_date(int age)
{
int ls_age,ls_year,ls_distance,ls_hope//年龄,出生日,相差的年龄,得到的出生年份
ls_age=22
ls_year=1986 //假如你是22岁,那么你的出生年月就是1986
if age>22 then
ls_distance=age-22
ls_hope=ls_year - ls_distance
else
ls_distance=22-age
ls_hope=ls_year + ls_distance
end if
return ls_hope
}
我是新手,所以写的函数很烂,还望多指教!