-
软工第三次作业
github仓库地址:https://github.com/DanielWen2005/QuestionCreater 这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 这个作业要求在哪里 htt -
实验2
实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h>#define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major,random_no -
实验2
实验任务1 include <stdio.h> include <stdlib.h> include <time.h> define N 5 define N1 80 define N2 35 int main() { int cnt; int random_major,random_no; sra -
实验二
任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major, random_no -
软件工程第三次作业
项目 内容 这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/Class12Grade23Compute -
实验2
实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major, random_ -
实验2
实验任务1 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { in -
实验一
task1 task2 task3 task4 #include<iostream> #include<string> #include<algorithm> bool is_palindrome(const std::string& s); bool is_palindrome_ignore_ca -
实验1 现代C++编程初体验
实验任务1 task1.cpp 点击查看代码 #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void -
实验1
任务一: #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1(); void tes -
实验二
#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major, random_no; sr -
实验一
task1 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <str -
实验一
任务1 源代码: 点击查看代码 #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1( -
地址
https://home.cnblogs.com/LittleZcy -
高级语言设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500309 姓名:郑睿杰 一 安装Dev-C++ -
实验二
实验任务1 源代码 点击查看代码 #include<stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major -
实验4
`#include<stdio.h> define N 4 define M 2 void test1() { int x[N] = { 1,9,8,4 }; int i; printf("sizeof(x)=%d\n", sizeof(x)); for (i = 0; i < N; ++i) pr -
20232413 2025-2026-1 《网络与系统攻防技术》实验六实验报告
Metasploit攻击渗透实践 一.实验内容 1.前期渗透操作 2.Vsftpd 源码包后门漏洞 3.Samba MS-RPC Shell 命令注入漏洞 4.Java RMI Server 命令执行漏洞 5.PHP CGI 参数执行注入漏洞 二.实验过程 2.1前期渗透操作 2.1.1主机发现(A -
实验4 C语言数组应用编程
task1.c 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof -
实验三
任务一 1.作用是定义分段对应的等级,形参:整型 返回值:字符型 2.会导致代码一直执行,无法终止。 task2 1.通过对某一数的各位取余数,使得最后的结果为该数各位上数字之和。 2.可以,新改后用的是递归的方法,将多位数递归分解。 task3 1.如果n=0,则会输出1(也许需要考虑x!=0)如