上一页 1 2 3 4 5 6 7 ··· 29 下一页
摘要: 问题描述:从windows下copy文件夹到虚拟机,文件夹带小锁 方法一:单个文件被锁的情况sudo chmod 777 filenamefilename换成你需要解锁的文件即可,例如:sudo chmod 777 main.cpp.那么被锁的main.cpp文件就解锁了。 方法二:文件夹带锁:这个 阅读全文
posted @ 2023-11-15 11:40 江南王小帅 阅读(1333) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstring>#include<algorithm>#include<ctime> #define maxn 110 using namespace std; int main() { int i,j,n,c[maxn][maxn]; cin> 阅读全文
posted @ 2023-08-31 10:57 江南王小帅 阅读(54) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstring>#include<algorithm>#include<ctime> using namespace std; const int MAXN=10010; int main() { char s[MAXN];int i=0,n=0 阅读全文
posted @ 2023-08-31 10:06 江南王小帅 阅读(15) 评论(0) 推荐(0)
摘要: #include<iostream>#include<cstring>#include<algorithm>#include<ctime> #define MAX 8using namespace std; int main() { int a[MAX]={1,5,9,6,3,1,4,6}; for 阅读全文
posted @ 2023-08-30 17:04 江南王小帅 阅读(76) 评论(0) 推荐(0)
摘要: #include <iostream>#include <iomanip>#include <ctime>#include <cstdlib> using namespace std; int main() { int n; cin >> n; do { cout << n % 10; n /= 1 阅读全文
posted @ 2023-08-29 18:21 江南王小帅 阅读(28) 评论(0) 推荐(0)
摘要: #include <iostream>#include <iomanip>#include <ctime>#include <cstdlib> using namespace std; int main() { int a, b, gcd; cin >> a >> b; gcd = a > b ? 阅读全文
posted @ 2023-08-29 17:38 江南王小帅 阅读(13) 评论(0) 推荐(0)
摘要: // ConsoleApplication15.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。// #include <iostream>#include <stdio.h>using namespace std; void to_binary(unsigned long 阅读全文
posted @ 2023-08-23 09:03 江南王小帅 阅读(151) 评论(0) 推荐(0)
摘要: // ConsoleApplication15.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。// #include <iostream>#include <stdio.h>using namespace std; long fact(int n);//使用循环方法long 阅读全文
posted @ 2023-08-22 13:56 江南王小帅 阅读(344) 评论(0) 推荐(0)
摘要: 总述:编写.c文件和Makefile 文件->make->生成点.ko文件->insmode->lsmode->rmmode. 一、编写Hello.c 与 Makefile ubuntu@ubuntu-VirtualBox:/$ cd ~/Desktop/ubuntu@ubuntu-VirtualB 阅读全文
posted @ 2023-08-09 13:49 江南王小帅 阅读(101) 评论(0) 推荐(0)
摘要: **1 修改ip** 1.1 文件路径 ./package/base-files/files/bin/config_generate 1.2 修改内容 ![](https://img2023.cnblogs.com/blog/2439618/202305/2439618-20230531155100 阅读全文
posted @ 2023-05-31 15:53 江南王小帅 阅读(736) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 29 下一页