上一页 1 ··· 80 81 82 83 84 85 86 87 88 ··· 98 下一页
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{margin: 0;padding: 0;} span{ position: absolute; top: 0 阅读全文
posted @ 2020-04-04 12:44 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } ul { list-style: none; } li 阅读全文
posted @ 2020-04-04 12:41 JackieDYH 阅读(39) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{margin: 0;padding: 0;} #txt1{background: #0084BB;margin 阅读全文
posted @ 2020-04-04 10:24 JackieDYH 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } .wrap { width: 66%; margin: 阅读全文
posted @ 2020-04-03 21:38 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } img { vertical-align: top; w 阅读全文
posted @ 2020-04-03 21:32 JackieDYH 阅读(51) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-04-01 22:31 JackieDYH 阅读(8) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> body, ul, li { margin: 0; padding: 0; list-style: none; } 阅读全文
posted @ 2020-04-01 22:19 JackieDYH 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 随机初始化数组项 //随机生成20项初始化数组 var arr = []; for(var i=0; i<20; i++){ arr[i] = Math.floor(Math.random()*21); } 选择排序 for(var i=0; i<arr.length; i++){ //最小值下标 阅读全文
posted @ 2020-04-01 13:56 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> window.onload = function(){ function toTF(str){ v 阅读全文
posted @ 2020-03-31 21:23 JackieDYH 阅读(26) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> void PRINT(long s) { FILE *out; printf("s=%ld\n",s); if((out=fopen("result.dat","w+"))!=NULL) { fprintf(out,"s=%ld",s); fclose(out) 阅读全文
posted @ 2020-03-31 10:22 JackieDYH 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 ··· 80 81 82 83 84 85 86 87 88 ··· 98 下一页