练习3-8 查询水果价格 (15分) 给定四种水果,分别是苹果(apple)、梨(pear)、桔子(orange)、葡萄(grape),单价分别对应为3.00元/公斤、2.50元/公斤、4.10元/公斤、10.20元/公斤。 首先在屏幕上显示以下菜单: [1] apple [2] pear [3] ...
分类:
其他好文 时间:
2020-03-27 17:15:13
阅读次数:
92
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <form action="" method="post"> <h1 align="center">用户注册信息</h1> <tab ...
分类:
Web程序 时间:
2020-03-26 16:26:08
阅读次数:
92
记录一下pycharm的常用技巧:ctrl+?注释,取消注释shift+enter快速换行ctrl+代码查看对应代码帮助ctrl+d复制,粘贴当前行在代码尾部如下为文件操作:点击右键copypath复制路径点击右键showintheexplorer在资源管理器中打开点击右键movetotheright对比功能点击右键showhistory查看文件修改记录菜单view-tools中有termial,
分类:
编程语言 时间:
2020-03-25 23:50:45
阅读次数:
169
好久没发博客了,发一条给2020打个卡 新手入坑小程序,网上没找到类似的示例,自己整了一个。多功能滑动展示 <!--pages/scrollMenu/scrollMenu.wxml--> <swiper class="navban" interval="{{interval}}" duration= ...
分类:
微信 时间:
2020-03-25 19:46:00
阅读次数:
186
Example input Copy 6 3 1 4 2 10 3 10 2 16 4 16 5 output Copy YES YES NO YES YES NO Note In the first test case, you can represent 3 as 3. In the secon ...
分类:
其他好文 时间:
2020-03-25 19:15:49
阅读次数:
92
一、解决跨域、过虑options请求问题 1.创建过虑类 import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import javax.se ...
分类:
编程语言 时间:
2020-03-25 01:25:08
阅读次数:
109
AnimatedContainerWidget AnimatedContainer({ Key key, this.alignment, this.padding, Color color, Decoration decoration, this.foregroundDecoration, doub ...
分类:
其他好文 时间:
2020-03-24 19:14:54
阅读次数:
87
找到为什么是nan的问题,是因为误差没有变小,而是越来越大猜测:没有加载初始权重导致的误差越来越大,不可训练,在原有基础权重的基础上进行训练,否则误差变化太大导致nan问题的出现,依据:加载初始权重之后解决。扩展:也可能是由于网络没有设置初始权重的问题、或者是自己采用detectron2的方式,而不... ...
分类:
其他好文 时间:
2020-03-24 18:37:00
阅读次数:
116
idms 启动命令nohup java -Denv=DEV -Ddev_meta=http://10.100.2.92:8080 -jar idms-center-1.0-SNAPSHOT.jar >./logs/demo.log 2>&1 & nohup java -Denv=DEV -Ddev_ ...
分类:
其他好文 时间:
2020-03-24 10:29:17
阅读次数:
90
1 from app01.models import Role 2 3 def initial_session(user,request): 4 permissions = Role.objects.filter(user=user).values('permissions__url', 5 'pe ...
分类:
其他好文 时间:
2020-03-24 00:53:53
阅读次数:
95