1 //n的阶乘 2 #include<stdio.h> 3 4 int fun(int n); 5 int main(void) 6 { 7 int n; 8 scanf("%d",&n); 9 10 printf("%d",fun(n)); 11 return 0; 12 } 13 int fu ...
分类:
其他好文 时间:
2020-03-14 12:42:09
阅读次数:
51
注解异常枚举//定义枚举类public enum SEX_PERSON { //Enum; MALE(0){ public boolean isValue0(){ return true; } public boolean isValue1(){ return false; } }... ...
分类:
其他好文 时间:
2020-03-14 11:21:49
阅读次数:
54
给定一个 $N\times M$ 地图,每个格子可能是空地、墙、出口、起点,或者是一副瞬移管道的两端。当你达到瞬移管道一端所在的格子时,就会自动瞬移到另一端。从一个空地移到四连通的另一个空地需要 $1$ 时间。瞬移不需要时间。求从起点到出口的最小时间。$N \leq 300, M \leq 300$ ...
分类:
其他好文 时间:
2020-03-14 11:19:43
阅读次数:
80
1 .table{ 2 font-size: 12px; 3 border-collapse: collapse; 4 border-top: 1px solid #7f9db9; 5 border-left: 1px solid #7f9db9; 6 } 7 .table td, .table t ...
分类:
其他好文 时间:
2020-03-14 11:19:28
阅读次数:
83
一、配置ssh链接安装openssh-server sudo apt-get install openssh-server 二、安装Python3及pip sudo apt-get install python3 sudo apt install python3-pip 三、设置Python3 Py ...
分类:
编程语言 时间:
2020-03-14 11:13:01
阅读次数:
52
注意: 1. 如果不是root账户,在运行上述脚本之前必须先运行 ,并输入超级管理员密码。 2. 上述脚本默认监听80和443 3. 版本自行修改 4. 脚本仅适用于Debian系列系统 ...
分类:
其他好文 时间:
2020-03-14 11:12:30
阅读次数:
252
# 查看Keras 是否可使用gpufrom keras import backend as K gpu =K.tensorflow_backend._get_available_gpus() print(gpu) # 查看tensorflow是否可使用gpu import tensorflow a ...
分类:
其他好文 时间:
2020-03-14 10:51:22
阅读次数:
408
Run the following in a command prompt ~~~shell pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install ~~~ Start up a Jupyter ...
分类:
其他好文 时间:
2020-03-14 10:51:10
阅读次数:
55
“输出”窗口中的诊断消息 可以使用 Debug 类或 Trace 类(属于 System.Diagnostics 类库)将运行时消息写到“输出”窗口。 如果只在程序的调试版本中输出,则使用 Debug 类。 如果要同时在调试版本和发布版本中输出,则使用 Trace 类。 输出方法 Trace 和 D ...
分类:
其他好文 时间:
2020-03-14 10:39:05
阅读次数:
74
import turtle turtle.right(60) turtle.forward(200) turtle.right(120) turtle.forward(200) turtle.right(120) turtle.forward(200) turtle.penup() turtle.f ...
分类:
其他好文 时间:
2020-03-14 01:24:32
阅读次数:
62