上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: <div id="app14"> <button @click="num = num+1">++</button> <span>{{ num }}</span> </div> <script> const app14=new Vue({ el:'#app14', data:{ num:0 }, be 阅读全文
posted @ 2023-11-12 22:32 子过杨梅 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <div id="app13"> 希望翻译成为: <br> <select v-model="obj.lang"> <option value="english">英语</option> </select> <br> 请输入:<label style="margin-left: 50px;">翻译为 阅读全文
posted @ 2023-11-12 22:32 子过杨梅 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div class="block" style="margin: 2% 25%;"> <el-pagination layout="total, prev, pager, next, jumper" :total="value.page" @prev-click= 阅读全文
posted @ 2023-11-06 10:06 子过杨梅 阅读(24) 评论(0) 推荐(0) 编辑
摘要: <div id="app12"> <table style="width: 300px;height: 160px;background-color: aquamarine;" cellspacing=0> <tbody> <tr class="biaotou"> <td>编号</td> <td>学 阅读全文
posted @ 2023-11-04 10:57 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <div id="app11"> <h3>哞哞俩数计算器</h3> <input type="number" v-model="num1"> <select v-model="chart"> <option value="+">+</option> <option value="-">-</opti 阅读全文
posted @ 2023-11-04 10:57 子过杨梅 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <div id="app10"> <ul> <li style="list-style-type: none;" v-for="(item , index) in list" :key="list.id"> {{ item.num }} </li> </ul> computed合计:{{ count 阅读全文
posted @ 2023-10-27 19:36 子过杨梅 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <div id="app9" style="background-color: aqua;"> 姓名:<input type="text" v-model="name"> <br> 性别:<input type="radio" name="" value="1" v-model="gender">男 阅读全文
posted @ 2023-10-27 19:35 子过杨梅 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-10-27 17:12 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 需要的物件: 1.一个云服务器 2.一双会cv的手 3.出了问题会自己百度的脑子 首先,直接粘代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtm 阅读全文
posted @ 2023-10-25 13:33 子过杨梅 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 表示 N = 尾数*基数^指数 可以理解成十进制的 0.00001 = 1×10-5 指数也可以称为阶码,一般使用移码表示(这是个正数,有阶符表示正负) 基数在计算机中无需存储,就是2 尾数一般使用补码表示(这个也是正数,有数符表示正负) 浮点数的比较与运算: 1.运算方式: 对阶 --> 尾数计算 阅读全文
posted @ 2023-10-21 17:08 子过杨梅 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页