tp5安装第三方的cms后台 总是遇到File not found的问题 在var/log/nginx/error.log中发现是这个错误 [error] 3926#0: *33481 FastCGI sent in stderr: "Primary script unknown" while re ...
分类:
其他好文 时间:
2020-08-09 14:22:45
阅读次数:
82
2020/8/8 1.关于a++,和++a【KSP28】 public class DEMO01 { public static void main(String[] args) { int a1=1,a2=1; int b,c; b=++a1; //先把a1自加1,然后再赋给b c=a2++; / ...
分类:
其他好文 时间:
2020-08-09 13:07:32
阅读次数:
79
题目链接https://loj.ac/problem/6277 1 #include<bits/stdc++.h> 2 3 using namespace std; 4 typedef long long ll; 5 const int maxn = 1e5 + 10; 6 const int in ...
分类:
其他好文 时间:
2020-08-08 21:23:31
阅读次数:
77
#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<time.h> int main01() { int i = 0; //do... ...
分类:
其他好文 时间:
2020-08-08 21:21:15
阅读次数:
126
#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<time.h> int main01() { int i=0; //while(表 ...
分类:
其他好文 时间:
2020-08-08 20:07:27
阅读次数:
85
922. 按奇偶排序数组 II 给定一个非负整数数组 A, A 中一半整数是奇数,一半整数是偶数。 对数组进行排序,以便当 A[i] 为奇数时,i 也是奇数;当 A[i] 为偶数时, i 也是偶数。 你可以返回任何满足上述条件的数组作为答案。 示例: 输入:[4,2,5,7] 输出:[4,5,2,7 ...
分类:
编程语言 时间:
2020-08-08 00:34:37
阅读次数:
72
测码学院 python自动化测试学习路线 条件语句一般是用if else语句来判断,而循环语句有while、for条件判断等。Python语言中的条件语句if else语句多条件判断跟其他语言写法不一致,其他的语言是 if else if else,Python是if elif else。下面具体用 ...
分类:
编程语言 时间:
2020-08-07 21:44:59
阅读次数:
72
import turtledef main(): count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count = count + 1 turtle.exitonclick()if __name__== '_main_ ...
分类:
编程语言 时间:
2020-08-05 23:27:07
阅读次数:
104
一:解题思路 二:完整代码示例 (C++版和Java版) C++代码: #include <iostream> using namespace std; int main() { int k = 0; int N = 0; int num = 0; while (cin >> k) { num = ...
分类:
其他好文 时间:
2020-08-05 22:14:18
阅读次数:
96
一:解题思路 这道题目的本质就是求斐波那契数列的第n项。 二:完整代码示例 (C++版和Java版) C++代码: #include <iostream> using namespace std; int main() { int months = 0; while (cin >> months) ...
分类:
其他好文 时间:
2020-08-05 19:41:00
阅读次数:
68