#include<stdio.h>#include<math.h>intmain(){intn;intsum=1;scanf("%d",&n);for(inti=1;i<=n;i++){sum*=i;}printf("%d",sum);return0;}//非递归#include<stdio.h>intfloor(intn){if(n==1){re
分类:
编程语言 时间:
2020-03-19 09:14:18
阅读次数:
80
思路跟51题一模一样 1 class Solution 2 { 3 vector<vector<string>> res; 4 vector<string> temp;//临时路径 5 vector<bool> col,m,s;//列,主对角线,副对角线 6 int n; 7 public: 8 i ...
分类:
其他好文 时间:
2020-03-18 23:52:55
阅读次数:
58
``` 140.82.112.3 github.com 140.82.113.19 gist.github.com 185.199.108.153 assets-cdn.github.com 185.199.109.153 assets-cdn.github.com 185.199.110.153 ... ...
分类:
其他好文 时间:
2020-03-18 23:50:56
阅读次数:
54
来源:力扣 链接:https://leetcode-cn.com/problems/move-zeroes/ 给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。 示例: 输入: [0,1,0,3,12] 输出: [1,3,12,0,0] 说明: 必须在原数 ...
分类:
移动开发 时间:
2020-03-18 23:36:04
阅读次数:
74
注意:初始化成员列表(参数列表)只能在构造函数使用 1 class Data 2 { 3 private: 4 int m_a; 5 int m_b; 6 int m_c; 7 public: 8 //成员名(形参名) 9 Data(int a,int b,int c):m_a(a),m_b(b), ...
分类:
其他好文 时间:
2020-03-18 23:34:43
阅读次数:
44
21篇测试必备的Linux常用命令,每天敲一篇,每次敲三遍,每月一循环,全都可记住!! https://www.cnblogs.com/poloyy/category/1672457.html 压缩一个文件 yyTest.ini tar -zcvf yyTest.tar.gz yyTest.ini ...
分类:
系统相关 时间:
2020-03-18 23:27:50
阅读次数:
87
实体类属性和数据库表中列名不一致的时候,使用@Results()注解。 复杂关系映射的注解说明 一对一映射 一对多: ...
分类:
其他好文 时间:
2020-03-18 23:25:16
阅读次数:
93
希尔排序算法 这个 "视频" 有每一步的过程和讲解 完整代码 ...
分类:
编程语言 时间:
2020-03-18 23:23:39
阅读次数:
68
Flask中的request from flask import Flask,request app = Flask(__name__) @app.route("/",methods=["POST","GET"]) def index(): # 请求相关的信息 print("请求方法",reques ...
分类:
其他好文 时间:
2020-03-18 23:19:11
阅读次数:
67
# 通过类型检查,可以检查指定值(变量)的类型 # a=123 数值 # b='123' 字符串 # type()用来检查值得类型 # 该函数会将检查的结果作为返回值返回,可以通过变量来接受函数的返回值 # c = type('123') # print(c) 结果为<class 'str'> pr ...
分类:
编程语言 时间:
2020-03-18 22:10:43
阅读次数:
69