码迷,mamicode.com
首页 >  
搜索关键字:while if else    ( 50281个结果
turtle应用
import turtle from random import * from math import * turtle.seth(90) def tree(n,l): turtle.down() turtle.pencolor('#410200') turtle.pensize(n*3) turt ...
分类:其他好文   时间:2021-06-08 23:16:21    阅读次数:0
下拉列表选择框以及弹框
<html> <head> <title>下拉列表选择框</title> <script> alert("请退出"); var flag=confirm("请选择"); if(flag){ alert("欢迎光临"); }else{ alert("手别乱点"); } var result=promp ...
分类:其他好文   时间:2021-06-08 22:32:47    阅读次数:0
Java HTTP请求封装类
封装类 public class HttpRequest { /** * 向指定URL发送GET方法的请求 * * @param url * 发送请求的URL * @param param * 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 * @return ...
分类:编程语言   时间:2021-06-07 21:04:17    阅读次数:0
解析没有属性名称的Json到C#
因为{Object}这不是真正有效的JSON,所以我删除了它。您可以在技术上做json.Replace("{Object}", "something else")以使其更容易。因为你处理数组中的不同类型,所以它可能不是一个一步的过程。这里有一个想法: var json = "[2, \"2\", \ ...
分类:Web程序   时间:2021-06-07 20:54:10    阅读次数:0
Leetcode 56 合并区间
简介 简单题, 但是挺考验java数据结构的 code class Solution { public int[][] merge(int[][] intervals) { if (intervals.length == 0) { return new int[0][2]; } Arrays.sor ...
分类:其他好文   时间:2021-06-07 20:43:01    阅读次数:0
python解压zip文件
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:编程语言   时间:2021-06-07 20:42:48    阅读次数:0
SQL Server查询表结构
SELECT (case when a.colorder=1 then d.name else null end) 表名, a.colorder 字段序号,a.name 字段名, (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then ...
分类:数据库   时间:2021-06-07 20:27:53    阅读次数:0
vue验证登录(Detected an infinite redirection in a navigation guard when going from "/" to "/login". Aborting to avoid a Stack Overflow. This will break in production if not fixed.)
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:其他好文   时间:2021-06-06 19:32:40    阅读次数:0
第 2 场周赛
3626. 三元一次方程 签到。 暴力思路是三重枚举,可优化至两重枚举。 int n; int main() { int T; cin>>T; while(T--) { cin>>n; bool ok=false; for(int i=0;3*i<=n && !ok;i++) for(int j=0 ...
分类:其他好文   时间:2021-06-06 19:26:45    阅读次数:0
Python | python基础(四) - 字符串和编码
分支循环判断 1. 判断 1.1. if/else python的条件判断是什么? python中使用if,else,elif 作为条件判断 使用缩进表示 层级关系 如果if判断为true ,则执行下面的缩进的语句 如果if判断为false,则不执行,如果还有else,则执行else的语句 ?Exa ...
分类:编程语言   时间:2021-06-06 19:15:44    阅读次数:0
50281条   上一页 1 ... 9 10 11 12 13 ... 5029 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!