• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 20232306 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    实验内容及要求 本实践目标是掌握metasploit的用法。 指导书参考Rapid7官网的指导教程。 https://docs.rapid7.com/metasploit/metasploitable-2-exploitability-guide/ 下载官方靶机Metasploitable2,完成下
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   刘博lb   2025-11-17 17:20    0    12
  • 实验4

    1 问题1:连续 ,相同 问题2:连续,相同,16,一行差的总字节数 2 问1:input(int x[], int n);input(x,n) 问2:函数input的功能是输入并存储数组x中的n个数值;函数compute的功能是计算数组x中去掉最大值最小值后的平均值 3 问1:output(int
     程序设计基础(南京信息工程大学)   135hlj   2025-11-16 20:38    1    12
  • 实验4

    任务1 #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++) printf("%p
     程序设计基础(南京信息工程大学)   0721绫地宁宁   2025-11-16 17:37    1    12
  • 算法第三章作业

    1.递归方程dp[i][j]= triangle[0][0](i=0,j=0)dp[i−1][0]+triangle[i][0](j=0)dp[i][i]=dp[i−1][i−1]+triangle[i][i](j=i) dp[i][j]=max(dp[i−1][j−1],dp[i−1][j])+t
     软件工程2403(广东外语外贸大学 - 信息学院)   小气可乐   2025-11-16 13:08    0    12
  • 高级语言程序设计课程第五次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500415 姓名:林帅前 一.程序设计 1.
     2025高级语言程序设计(福州大学)   潇山北风   2025-11-16 18:31    0    12
  • 实验二

    task1: 代码组织: T.h 内容:类T的声明、友元函数声明 T.cpp 内容:类T的实现、友元函数实现 task1.cpp 内容:测试模块、main函数 T.h : #pragma once #include <string> // 类T: 声明class T { // 对象属性、方法 pub
     面向对象程序设计(南京信息工程大学)   彤彤酱   2025-10-28 21:11    1    12
  • 实验2 现代c++编程初体验

    task1: 1 #pragma once 2 3 #include<string> 4 5 //类T声明 6 class T{ 7 public: 8 T(int x=0,int y=0);//普通构造函数 9 T(const T&t);//复制构造函数 10 T(T &&t);//移动构造函数
     面向对象程序设计(南京信息工程大学)   sunishope   2025-10-25 16:05    1    12
  • 20232325 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    Metasploitable2靶机渗透测试实验报告 1. 实验内容 1.1 前期渗透Metasploitable2靶机,发现靶机并进行端口、漏洞扫描 1.2 Metasploit攻击渗透方法实践 (1)Vsftpd源码包后门漏洞(21端口) (2)SambaMS-RPC Shell命令注入漏洞(端口
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   DDD?   2025-11-20 01:44    0    12
  • 实验三

    任务一: 1.源代码: (1)button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::str
     面向对象程序设计(南京信息工程大学)   Likgon   2025-11-21 21:00    1    12
  • OOP-实验3

    实验任务1 源代码 button.hpp,window.hpp,task1.cpp 点击查看代码 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std
     面向对象程序设计(南京信息工程大学)   dingxy123   2025-11-22 11:50    1    12
  • 实验3

    #include <stdio.h> char score_to_grade(int score); int main(){ int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grade(score
     程序设计基础(南京信息工程大学)   even_233   2025-10-26 20:59    1    12
  • 高级语言程序设计课程第六次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500411 姓名:陈鸿彬 一、一到十五题 总
     2025高级语言程序设计(福州大学)   陈鸿彬   2025-11-19 16:35    0    12
  • 高级语言程序设计课程第七次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500424 姓名:陈俊杰 本次作业对数组和指
     2025高级语言程序设计(福州大学)   雨_luo   2025-11-25 15:10    0    12
  • 高级语言程序设计课程第七次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx/ 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500414 姓名:陈树湘 (1)定义一个二维
     2025高级语言程序设计(福州大学)   102500414陈树湘   2025-11-25 15:21    0    12
  • 实验03

    实验一 button.hpp #pragma once #include<iostream> #include<string> class Button{ public: Button(const std::string &label_); const std::string &get_label(
     面向对象程序设计(南京信息工程大学)   myFuji1   2025-11-26 00:12    1    12
  • 高级语言程序设计课程第七次个人作业

    这个作业属于课程:课程链接 这个作业要求在:作业要求 学号:102500408 姓名:阮意舒 程序设计小题 练习1·按下标或指针处理二维数组 思路:利用指针p在每组int间与每组int内的移动实现遍历 练习2·构造螺旋方阵 思路:在需要转弯的边角处对行或列进行控制 练习3·计算并存储总分 思路:构造
     2025高级语言程序设计(福州大学)   BunnyLucy   2025-11-25 22:46    0    12
  • c++ 3

    ##task 1 #代码 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const std:
     面向对象程序设计(南京信息工程大学)   Zhades   2025-11-25 17:24    1    12
  • 102302138 林楚涵 作业三

    作业三 作业①:要求:指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 ① 核心代码与运行截图 * 点击查看代码 import requests import os import threading f
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   Linn13D。   2025-11-25 15:46    0    12
  • 102302114_比山布·努尔兰_作业3

    作业1 指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取 作业代码 `import requests from bs4 import BeautifulSoup import os import thre
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   bishanbu   2025-11-25 20:36    0    12
  • 实验3

    实验任务1 源代码: button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string&
     面向对象程序设计(南京信息工程大学)   系统警告   2025-11-23 19:09    1    12
< Prev1···5051525354555657585960···200Next >

Copyright ©2025 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档