我正在尝试创建这个程序来提示用户输入两个单词,然后在一行上打印出这两个单词。这些单词将被足够的点分隔,因此总行长为 30。我已经尝试过了,但似乎无法得到它。
<html>
<head>
<title>Lenth of 30</title>
<script type="text/javascript">
//Program: Lenth of 30
//Purpose: The words will be separated by enough dots so that the total line length is 30:
//Date last modified: 4/11/12
var firstword = ""
var secondword = ""
firstword = prompt("Please enter the first word.")
secondword = prompt("Please enter the second word.")
document.write(firstword + secondword)
</script>
</head>
<body>
</form>
</body>
</html>
一个例子:
输入第一个字:
龟
输入第二个字
153
(程序将打印出以下内容)
乌龟.....................153