-
高级语言程序设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500407 姓名:胡晨怡 1、安装环境的过程和 -
高级语言程序设计第一次作业
课程:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500330 姓名:黄明浩 -
实验一
task1 task2 task3 task4 #include<iostream> #include<string> #include<algorithm> bool is_palindrome(const std::string& s); bool is_palindrome_ignore_ca -
实验二
任务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 -
102302141_易敏亮第一次数据采集作业
问题一、定向爬取软科2020年中国大学排名(本科)数据('http://www.shanghairanking.cn/rankings/bcur/2020'),将爬取到的排名信息在屏幕上以表格形式打印出来 简介:request请求html,用bs4解析,根据'rk-table'属性下单table标签 -
20232308 2025-2026-1 《网络与系统攻防技术》实验二实验报告
1.实验内容 1. 实验目标 (1)使用netcat获取主机操作Shell,cron启动某项任务 (2)使用socat获取主机操作Shell, 任务计划启动 (3)使用MSF meterpreter生成可执行文件,利用ncat或socat传送到主机并运行获取主机Shell (4)使用MSF mete -
高级语言程序设计课程第二次个人作业
前言 [点击跳转班级](首页 - 2025高级语言程序设计 - 福州大学 - 班级博客 - 博客园) [点击跳转作业](高级语言程序设计第一次作业 - 作业 - 2025高级语言程序设计 - 班级博客 - 博客园) 学号:102500313 姓名:林奕鹏 作业 书本第3章3.11 编程练习题目中的第 -
20232313 2025-2026-1 《网络与系统攻防技术》实验二实验报告
1.实验内容 基本实验内容如下: 学习使用远程连接、结合-e类命令攻击主机,运行恶意文件; 了解基本的远程连接工具; 了解MSF meterpreter这一综合工具; 了解长期控制的简单方式; 实验要求回答问题及解答: (1)例举你能想到的一个后门进入到你系统中的可能方式? 这么说吧,同学趁我洗澡给 -
软工第三次作业--结对作业
廖永祺 3123004617 谭钧灏 3123004628 GitHub项目地址:https://github.com/LiaoYongQi6948/calculation.git 这个作业属于哪个课程 <班级的链接> 这个作业要求在哪里 https://edu.cnblogs.com/campus -
软件工程第三次作业
软件工程第三次作业 项目 内容 这个作业属于哪个课程 软件工程 这个作业要求在哪里 作业要求 这个作业的目标 实现一个自动生成小学四则运算题目的命令行程序,并能检验题目答案正确性 基本信息 代码仓库:https://github.com/FZ688/3123004177-AutoGenerator -
地址
https://home.cnblogs.com/LittleZcy -
实验一
任务一: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(const T& c); 8 void t -
算法设计p1
本学期我参考了多家大公司的编码规范,结合课程要求,制定了以下主要编码规范: 命名规范:变量、函数、类名必须使用有意义的英文单词,采用小驼峰(camelCase)或下划线(snake_case)命名法,禁止拼音和缩写。 代码格式:统一使用4个空格缩进;if、for等语句即使只有一行也必须加大括号;操作 -
高级语言程序设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500422 姓名:陈进和 一.安装C程序的编 -
博客地址
https://www.cnblogs.com/Wenteen -
实验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_ -
实验1 现代C++编程初体验
实验任务1 task1.cpp 点击查看代码 #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void -
实验一 现代C++编程初体验
任务1 源代码task1.cpp #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1 -
实验1 现代C++编程初体验
实验任务1: Task1源代码: #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1 -
实验1 现代C++编程初体验
任务1: 源代码task1.cpp 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 7 template<typename T> 8 void output(const