#include <bits/stdc++.h> using namespace std; stack<char> stack_op; stack<int> stack_num; char str[10000]; string change; int pow(int x, int y) { int ...
分类:
其他好文 时间:
2020-10-06 20:08:42
阅读次数:
25
7-1 jmu-python-韩信点兵 (20分) 7-2 打印数字矩形 (10分) 7-3 成绩统计 (10分) 7-4 找列表中最大元素的下标 7-5 删除列表中的重复值 如下: https://github.com/shylara-zhou/pythonPTA/tree/main ...
分类:
编程语言 时间:
2020-10-05 22:31:12
阅读次数:
56
Pl/SQL学习目标1、认识plsql2、变量、常量3、匿名块4、分支语句5、循环6、事务学习内容1、plsqlsql:结构化的查询语言:insert、update、delete、select表链接查询:内连接:返回多表中都匹配(==)的数据外连接:左(所有数据)、右(所有数据)笛卡尔乘积:plsql:过程化的SQL语言;扩充了:变量、常量、分支语句、循环、数据结构;匿名块的形式写命令2、变量、常
分类:
数据库 时间:
2020-10-05 22:07:08
阅读次数:
45
shell语句无限循环小常识:只要在你要循环的部位,前后分别加上whiletruedo和done就可以无限循环了其他用法是:#!/bin/bashsetj=2whiletruedolet"j=j+1"echo"----------jis$j--------------"done源文档http://www.jb51.net/article/62440.htm还有for循环#!/bin/bashset
分类:
系统相关 时间:
2020-10-05 22:05:26
阅读次数:
112
shell语句无限循环小常识:只要在你要循环的部位,前后分别加上whiletruedo和done就可以无限循环了其他用法是:#!/bin/bashsetj=2whiletruedolet"j=j+1"echo"----------jis$j--------------"done源文档http://www.jb51.net/article/62440.htm还有for循环#!/bin/bashset
分类:
系统相关 时间:
2020-10-05 22:05:06
阅读次数:
33
ALGS4 Exercise 1.5.15 Problem Binomial trees. Show that the number of nodes at each level in the worst-case trees for weighted quick-union are binomia ...
分类:
编程语言 时间:
2020-10-05 21:48:17
阅读次数:
42
#include<bits/stdc++.h> using namespace std; const int N = 300010; vector<int>p[N]; int ans[N]; int main() { int t; scanf("%d",&t); while(t --) { int ...
分类:
其他好文 时间:
2020-10-05 21:46:03
阅读次数:
23
class Program { static void Main(string[] args) { string name, pwd; Console.WriteLine("请输入用户名:"); while (true) { name = Console.ReadLine(); if (string ...
看了ES6的官方文档,把常用到的一些对象的方法记录一下,以便增加印象。 (1)for...in for...in循环遍历对象自身的和继承的可枚举属性(不含 Symbol 属性)。 let obj = { 'code': 123, 'name': 'take', 'ccc': function(){} ...
分类:
其他好文 时间:
2020-09-24 22:08:25
阅读次数:
52
猜数字的大小游戏 C:\Users\Administrator>python Python 3.6.8 (tags/v3.6.8:3c6b436a57, Dec 23 2018, 23:31:17) [MSC v.1916 32 bit (Intel)] on win32 Type "help", ...
分类:
其他好文 时间:
2020-09-24 22:07:37
阅读次数:
79