运行以下函数,正确的打印是?( )
def test(num):
print("the number is %d."%(num))
test(888)
the number is %d.
the number is 888.
the number is %d.888
the number is 888.888