|
发表于 2005-7-15 18:56:33
|
显示全部楼层
来自 中国–北京–北京–海淀区
len += format(timefull[len],255 - len," 本局剩余时间: ")
if (h>0){
len += format(timefull[len],255-len,"%d小时", h)
}
if (h>0 || m>0){
len += format(timefull[len],255-len,"%d分", m)
}
if (h>0 || m>0 || s>0){
len += format(timefull[len],255-len,"%d秒^n", s)
}
len += format(timefull[len],255-len," 北京时间: %s",timet)
//这不是中文字幕吗。你要用在1.5里,就必须改成英文字幕,否则是乱码。 |
|