- 博客(8)
- 资源 (1)
- 问答 (16)
- 收藏
- 关注
原创 Cannot find appropriate Makefile processor on this system.
1. Ubuntuapt-get install build-essential2. Centosyum install make automake gcc gcc-c++ kernel-devel
2021-01-28 13:25:42 4736 3
原创 解决 ‘makeinfo‘ is missing on your system.
方法一:ubuntu:sudo apt-get install texinfocentos:yum installtexinfo方法二:dnf --enablerepo=PowerTools install texinfo
2021-01-07 16:10:51 7621 2
原创 C++ primer plus 第六版编程题解答(第五章)
5.1#include <iostream>int main(){ using namespace std; int x, y, res; cout << "Please enter two numbers: "; cin >> x >> y; for (int i = x; i <=y;i++) res += i; cout << "The result is: " &
2020-11-07 14:37:53 165
原创 C++ primer plus 第六版编程题解答(第四章)
4.1#include <iostream>#include <typeinfo>using namespace std;int main(){ char f_name[10], l_name[10]; char grade; int age; cout << "What's your first name? "; cin.getline(f_name,10); cout << "What's you
2020-10-28 20:27:48 191
原创 C++ primer plus 第六版编程题解答(第三章)
3.1#include <iostream>using namespace std;int main(){ const int CONVERT = 12; int high, foot, inch; cout << "Please Enter your height in inch:___\b\b\b"; cin >> high; foot = high/CONVERT; inch = high%CONVERT;
2020-10-28 17:23:01 144
原创 C++ primer plus 第六版编程题解答(第二章)
2.1#include <iostream>int main(){ std::cout << "huisy" << "\n"; std::cout << "dongchuan road 500" << "\n"; return 0;}2.2# include <iostream>using namespace std;int main(){ int a; cin >
2020-10-28 17:16:42 477
原创 Python常用小技巧(一)
列表推导式1.解包# 将二维列表转换为一维列表>>> l = [[1,2],[3,4],[5,6],[7,8]]>>> [i for k in l for i in k][1, 2, 3, 4, 5, 6, 7, 8]2.完成元素操作# 将列表中的元素转换为字符串型>>> l = [1, 2, 3, 4, 5, 6, 7, 8]>>> [str(i) for i in l]['1', '2', '3',
2020-10-26 10:25:30 119
linuxkit+elasticsearch
2023-11-30
我在用Rust写一个不依赖于std的crate,并设置target = "x86_64-unknown-uefi"。但是测试脚本(cargo test)需要依赖std,我该如何去配置?
2023-07-28
Docker下载镜像太慢怎么办
2022-11-03
C语言如何实现一个进程将字符串写入某地址,另一个进程读取该地址获取字符串?
2021-04-01
windows 10系统防火墙无法开启,错误码0x8007045b,怎样解决?
2019-02-11
有哪些移植简单又有趣的深度学习算法可以移植到Linux系统的arm开发板上?
2018-12-14
有哪些类似华为speedsky平台提供的服务的公司?
2018-12-03
无人机最短飞行路径问题
2018-11-11
faster rcnn执行代码中的fix layers 是什么意思?
2018-10-10
python中ModuleNotFoundError错误
2018-07-13
yolo3编译阶段遇到的问题
2018-07-11
如何使用conda更换opencv的版本
2018-07-10
Python如何输出一串固定位数的阿拉伯数字?
2018-03-23
现在主流的医学图像诊断用的是什么方法?毕业设计想搞一个相关的题目
2018-02-22
faster-rcnn 关于预训练的问题
2018-02-03
下载了LabelImg,但是要怎么打开啊
2018-01-28
怎样给Ubuntu扩容呢?求详细步骤
2018-01-25
pytorch安装后不能import
2018-01-24
TA创建的收藏夹 TA关注的收藏夹
TA关注的人