摘要: 求a和b的最大公约数 int gcd(int a,int b){ if(a%b==0) return b; else return gcd (b,a%b); } #判断一个三位数是不是水仙花数 int sxh(int n){ int g,s,b; g=n%10; s=n%100/10; b=n/10 阅读全文
posted @ 2021-05-21 13:12 计科废物1 阅读(258) 评论(0) 推荐(0) 编辑
@media only screen and (max-width: 767px){ #sidebar_search_box input[type=text]{width:calc(100% - 24px)} } L2Dwidget.init({ "model": { jsonPath: "https://unpkg.com/live2d-widget-model-hijiki/assets/hijiki.model.json", "scale": 1 }, "display": { "position": "left", "width": 100, "height": 200, "hOffset": 70, "vOffset": 0 }, "mobile": { "show": true, "scale": 0.5 }, "react": { "opacityDefault": 0.7, "opacityOnHover": 0.2 } }); window.onload = function(){ $("#live2dcanvas").attr("style","position: fixed; opacity: 0.7; left: 70px; bottom: 0px; z-index: 1; pointer-events: none;") }