上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 73 下一页
摘要: 1、没有clear()这个方法 阅读全文
posted @ 2020-08-02 18:21 Tomorrow1126 阅读(70) 评论(0) 推荐(0) 编辑
摘要: int 最大值 2的31次方-1 (214748364) longlong 最大值为 2的64次方-1 windows系统: longlong scanf("%I64d"); printf("%I64d") linux下为: 1 long long a = 60122; 2 printf("%lld 阅读全文
posted @ 2020-08-02 17:29 Tomorrow1126 阅读(960) 评论(0) 推荐(0) 编辑
摘要: 使用队列queue 数到m,先输出,然后pop 其他的先添加到队尾,再pop #include <cstdio> #include <iostream> #include<string> #include<cstring> #include<cmath> #include<stdlib.h> #in 阅读全文
posted @ 2020-08-02 12:32 Tomorrow1126 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://zhidao.baidu.com/question/171628709.html cd \ d: 阅读全文
posted @ 2020-08-02 11:41 Tomorrow1126 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 整数a除以整数b(b≠0) 的商正好是整数而没有余数,我们就说b是a的因子。0不是0的因子。 假如整数n除以m,结果是无余数的整数,那么我们称m就是n的因子。 需要注意的是,唯有被除数,除数,商皆为整数,余数为零时,此关系才成立。反过来说,我们称n为m的倍数。 for(int i=1;i<x;i++ 阅读全文
posted @ 2020-08-02 11:39 Tomorrow1126 阅读(8545) 评论(0) 推荐(1) 编辑
摘要: 直接conda安不上 采用下面这个方法:https://blog.csdn.net/mawonly/article/details/87856530 下载网址:https://pypi.org/project/opencv-python/4.1.2.30/#files 注意环境变量的问题,一开始我的 阅读全文
posted @ 2020-08-02 11:34 Tomorrow1126 阅读(742) 评论(0) 推荐(0) 编辑
摘要: 在pycharm终端中pip 安装命令:pip install torchvisionAnaconda中conda安装命令:conda install torchvision -c soumithfor more source: python setup.py install 阅读全文
posted @ 2020-08-01 18:53 Tomorrow1126 阅读(584) 评论(0) 推荐(0) 编辑
摘要: C 库函数 - atoi() C 标准库 - <stdlib.h> 描述 C 库函数 int atoi(const char *str) 把参数 str 所指向的字符串转换为一个整数(类型为 int 型)。 声明 下面是 atoi() 函数的声明。 int atoi(const char *str) 阅读全文
posted @ 2020-08-01 16:13 Tomorrow1126 阅读(279) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> #include <iostream> #include<string> #include<cstring> #include<cmath> #include<algorithm> using namespace std; //两个小于1000000000的数 s 阅读全文
posted @ 2020-08-01 16:12 Tomorrow1126 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<string.h> #include<malloc.h>//使用malloc需要的头文件 int main(void) { char *p=(char *)malloc(100*sizeof(char));malloc在堆上开辟字节空间,返回值是 阅读全文
posted @ 2020-08-01 15:20 Tomorrow1126 阅读(65) 评论(0) 推荐(0) 编辑
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 73 下一页