1002 写出这个数 读入一个正整数 n,计算其各位数字之和,用汉语拼音写出和的每一位数字。 输入格式: 每个测试输入包含 1 个测试用例,即给出自然数 n 的值。这里保证 n 小于 10^100。 输出格式: 在一行内输出 n 的各位数字之和的每一位,拼音数字间有 1 空格,但一行中最后一个拼音数 ...
分类:
编程语言 时间:
2021-01-26 12:09:32
阅读次数:
0
M 代表 模型(Model) 模型是什么呢? 模型就是数据,就是 dao,bean V 代表 视图(View) 视图是什么呢? 就是网页, JSP,用来展示模型中的数据 C 代表 控制器(controller) 控制器是什么? 控制器的作用就是把不同的数据(Model),显示在不同的视图 (View ...
分类:
编程语言 时间:
2021-01-26 11:59:46
阅读次数:
0
SpringMVC View 从jsp =》现代前端; C 从Servlet =》Controller; Model 包括数据和行为:dao+service,vo/dto DispatcherServlet 请求分发 dispatcher程序调度 SpringMVC执行流程: (找个清楚的图。。) ...
分类:
编程语言 时间:
2021-01-25 11:04:12
阅读次数:
0
npm i vue-color <div> <div>color-picker</div> <p>Chrome</p> <chrome-picker v-model="colors" /> <p>Sketch</p> <sketch-picker v-model="colors" /> <p>Pho ...
分类:
其他好文 时间:
2021-01-25 11:02:35
阅读次数:
0
一、linux CPU大小 cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" 说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo ...
分类:
系统相关 时间:
2021-01-25 10:49:16
阅读次数:
0
python ORM关联表 定义两张表 # 国家表 class Country(models.Model): name = models.CharField(max_length=100) # 学生表, country 字段是国家表的外键,形成一对多的关系 class Student(models. ...
分类:
编程语言 时间:
2021-01-22 11:48:56
阅读次数:
0
方法一: 通过ViewBag将集合对象数据传递给View视图 Controller里Action方法如图 View视图里处理ViewBag内存的数据 方法二: Contorller控制器里直接 Return View(集合对象) View视图里最上方先声明 @model IEnumerable<Re ...
分类:
其他好文 时间:
2021-01-20 11:49:40
阅读次数:
0
1、Maven依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan ...
分类:
其他好文 时间:
2021-01-19 12:19:03
阅读次数:
0
组件:传递变量 知识点 为组件传递变量数据 组件的数据 制作可接受变量参数的组件。 综合例 <div id="myApp"> <div>请输入您的名字:<input v-model="myname"></div> <hr/> <say-hello :pname="myname" /> </div> ...
分类:
其他好文 时间:
2021-01-19 12:09:32
阅读次数:
0
Hyperledger Fabric Model 本节概述了Hyperledger Fabric中的关键设计特点,这些特点实现了其全面但可定制的企业区块链解决方案的承诺: Assets — Asset的定义使得在网络上交换几乎任何有货币价值的东西成为了可能,从食品到古董车再到货币期货 Chainco ...
分类:
其他好文 时间:
2021-01-19 11:40:45
阅读次数:
0