//用户输入一个数,如果数字小于10,泽前面进行补0,比如09 03等 let num = prompt('请您输入一个数字:') //判断输出 小于10才补0 num = num < 10 ? 0 + num : num alert(num)