我有一个程序,正在尝试获取用户输入并将其添加到数组中
x2= seq(0,0.9999,len=10)
x3= seq(0,0.9999,len=10)
round(outer(x2,x3, FUN=function(x2,x3) {(0.5-x2)/(0.5-x2+x3)} ) ,2)
#----------------------------------------
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
[1,] 1 0.82 0.69 0.60 0.53 0.47 0.43 0.39 0.36 0.33
[2,] 1 0.78 0.64 0.54 0.47 0.41 0.37 0.33 0.30 0.28
[3,] 1 0.71 0.56 0.45 0.38 0.33 0.29 0.26 0.24 0.22
[4,] 1 0.60 0.43 0.33 0.27 0.23 0.20 0.18 0.16 0.14
[5,] 1 0.33 0.20 0.14 0.11 0.09 0.08 0.07 0.06 0.05
[6,] 1 -1.00 -0.33 -0.20 -0.14 -0.11 -0.09 -0.08 -0.07 -0.06
[7,] 1 3.00 -3.00 -1.00 -0.60 -0.43 -0.33 -0.27 -0.23 -0.20
[8,] 1 1.67 5.00 -4.99 -1.67 -1.00 -0.71 -0.56 -0.45 -0.38
[9,] 1 1.40 2.33 7.01 -6.99 -2.33 -1.40 -1.00 -0.78 -0.64
[10,] 1 1.29 1.80 3.00 9.01 -8.99 -3.00 -1.80 -1.29 -1.00
我希望它将输入添加到列表中,但不能令人遗憾地工作
答案 0 :(得分:2)
将项目添加到列表中不会在程序中添加实际的项目字符串 源文件 您可以打开一个新文件,并根据需要将列表写入其中
例如:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>JQ Project</title>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script type="text/javascript" src="jQProject.js">
</script>
</head>
<body>
<div>Div 1</div>
<div class="highlight">Div 2</div>
<div id='third'>Div 3</div>
<div class="highlight">Div 4</div>
</body>
</html>
$("div").css("color", "purple");
$ (".highlight").css("width", "200px");
$ ( "#third").css("border", "4px solid orange");
$ (document).ready(function() {
console.log("ready to jquery");
});
现在,如果您在同一目录中打开名为“ myfile.txt”的文件,则会在其中找到列表