码迷,mamicode.com
首页 >  
搜索关键字:query end    ( 43100个结果
while 循环初认识
#!/usr/bin/env python #-*- coding:utf-8 -*- num=0 while num<=10: print(num,end="\t") num +=1 print("**************************") num2=0 sum_all=0 whil ...
分类:其他好文   时间:2021-04-22 16:16:24    阅读次数:0
ABAP Help Document(4):1.4 链式表达式
1.4 链式表达式 示例: "Chained Statements FORM f_chained_statements. "定义结构 TYPES:BEGIN OF struc1, name TYPE C LENGTH 20, age TYPE I, END OF struc1. "完整表示 TYPE ...
分类:其他好文   时间:2021-04-22 16:07:54    阅读次数:0
获取前一天日期
Date dNow = new Date(); //当前时间Date dBefore = new Date();Calendar calendar = Calendar.getInstance(); //得到日历calendar.setTime(dNow);//把当前时间赋给日历calendar.a ...
分类:其他好文   时间:2021-04-22 15:38:17    阅读次数:0
解决unittest断言失败,后续的断言不执行进阶之重新封装断言
python unintest单元测试框架提供了一整套内置的断言方法。 1. 如果断言失败,则抛出一个AssertionError,并标识该测试为失败状态。 2. 如果成功,则标识该测试为成功状态。 但存在一个缺点,测试用例中含有多个断言时,一个断言失败,抛出异常,后续断言不再继续执行,也就无从知道 ...
分类:其他好文   时间:2021-04-22 15:35:52    阅读次数:0
54. Spiral Matrix
Given an m x n matrix, return all elements of the matrix in spiral order. Example 1: Input: matrix = [[1,2,3],[4,5,6],[7,8,9]] Output: [1,2,3,6,9,8,7, ...
分类:其他好文   时间:2021-04-22 15:34:12    阅读次数:0
sizeof
#include <stdio.h> #include <iostream> using namespace std; class abc { private: int a; int b; }; int main() { cout << "Hello, World!" << endl; cout < ...
分类:其他好文   时间:2021-04-22 15:25:05    阅读次数:0
MySQL5.7 重新初始化解决mysql库表坏问题
一、问题报错 [ERROR] InnoDB: Ignoring the redo log due to missing MLOG_CHECKPOINT between the checkpoint xxxx and the end yyyy. 因MySQL上存储的应用数据并没有多大,mysql下多张 ...
分类:数据库   时间:2021-04-22 15:22:00    阅读次数:0
【事件类】雅思口语
【事件】 bike trip Describe an unforgettable bike trip you had You should say: When and where you had the trip Who you went with Why you had the trip by b ...
分类:其他好文   时间:2021-04-21 12:57:26    阅读次数:0
Vue计数器演示响应式编程
初学Vuejs,理解并感受了Vue的渐进式、响应式编程。 了解了前端的编程范式,过去自己硬写的js、jquery是属于命令式编程范式,现在写的vue属于声明式编程范式。 响应式编程主要是解耦了视图(html)和数据,与测试这边的数据驱动是一个思想,就是把数据和程序代码分离 下面是一个vue实现的计数 ...
分类:其他好文   时间:2021-04-21 12:57:08    阅读次数:0
L2-035 完全二叉树的层序遍历 (25 分)
根据完全二叉树的性质(编号为$u$的节点的左儿子编号为$u2$,右儿子编号为$u2+1$),并利用后序遍历进行递归建树。 $level[i]$存储编号为$i$的节点的值。 const int N=35; int post[N]; int level[N]; int n; int k; void df ...
分类:其他好文   时间:2021-04-21 12:54:57    阅读次数:0
43100条   上一页 1 ... 29 30 31 32 33 ... 4310 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!