骑马喝酒走四方666
骑马喝酒走四方666
全部文章
分类
Linux(1)
读书笔记(4)
归档
标签
去牛客网
登录
/
注册
无产阶级最可靠的同盟军
全部文章
(共8篇)
题解 | #二维数组操作#
#include <iostream> using namespace std; int main() { int row,col; while (cin>>row>>col) { row = row-1; ...
2023-05-08
0
240
题解 | #汽水瓶#
#include <iostream> using namespace std; int main() { int num; while (cin>>num) { if(num!=0) { ...
2023-04-12
0
231
Linux操作系统
man 查看用法 或者 ls --help banner 图形化界面sudo apt-get update sudo apt-get install sysvbanner sudo apt-get update sudo&nb...
2022-10-15
0
322
Linux鸟哥的私房菜
创建代码文件 cd Code touch hello_shiyanlou.c cd 命令是切换到 Code 目录下方,紧接着输入 touch hello_shiyanlou.c 创建名为 h...
2022-10-14
1
405
学习C++ Primer Plus
String cstring strcpy()复制 strcat() 添加 strncpy() strcncat()增加或者复制的时候会自己扩展数组长度,但是复杂度比之前的语法有所增加 ...
C++
2022-10-13
0
327
阅读C++Primer4.1-4.2
#include <iostream> #include <cstring> using namespace std; int main() { char name[1...
C++
2022-10-08
0
417
2022/10/4 学习C++ primer plus
课题组: 1.完成MATLAB与C++代码对比 2.配置好Python环境 3.初步完成写入电路的代码 自学: 1.C++ 2.牛客网基础刷题 笔记: C++: 第二章 1.如果两个函数都使用某个命名空间的...
C++
2022-10-05
0
279
题解 | #简单运算#
基本运算 #include <iostream> #include <algorithm> using namespace std; int main()&nb...
C++
2022-09-22
0
300