Seaworth
Seaworth
全部文章
C++
MATLAB(2)
office(1)
Python(2)
Ubuntu(1)
未归档(2)
机器学习(1)
软技能(1)
归档
标签
去牛客网
登录
/
注册
Seaworth的博客
青山不改,绿水长流
全部文章
/ C++
(共4篇)
学习C++系列一:命名约定
命名约定为了方便程序员(而不是编译器)理解代码,因此为养成一个好的编程习惯,选择合适的约定。 程序清单1:使用变量存储数字及相乘的结果 #include "stdafx.h" #include <iostream> using namespace std; v...
2019-12-13
0
575
Visual Studio 常用快捷键、字体、主题设置
1.常用快捷键 1.1 复制当前行到下一行,在当前行先Ctrl+c 再Ctrl+v 1.2 剪切当前行或删除当前行,Ctrl+x 1.3 设置注释和取消注释的快捷键 注释快捷键设置为Ctrl+/,取消注释快捷键为Ctrl+shift+/ 工具 -> 选项 -> 环境 -...
2019-12-13
0
658
C++ 中error: ‘exit’ was not declared in this scope 的解决方法
添加头文件#include <cstdlib>
2019-12-13
0
1022
C++ Primer warning: defaulted and deleted functions only available with -std=c++11 or -std=gnu++11
Sales_item.h:56:18: warning: defaulted and deleted functions only available with -std=c++11 or -std=gnu++11 Sales_item()=default; ...
2019-12-13
0
734