Skip to content

Commit bffd0da

Browse files
committed
test
1 parent 6848b6d commit bffd0da

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

test1.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>test</title>
6+
</head>
7+
<body>
8+
<p>第一题。。</p>
9+
<p></p>
10+
<script type="text/javascript">
11+
var i,j,k;
12+
for(var i=1;i<=4,i++){
13+
for(var j=1;j<=4;j++){
14+
for(var k=1,k<=4;k++){
15+
if(i!=j&&j!=k&&i!=k){
16+
document.write(i*100+j*10+k);
17+
}
18+
}
19+
}
20+
21+
}
22+
</script>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)