-
第一次算法作业
一、编码规范 1.命名规范 命名需要见名知意,需要全程使用英文单词,杜绝拼音和用简单字母表示的无意义命名。具体要求为:变量采用小写加下划线或小驼峰命名(如 student_age 或 studentAge),函数和类名用大驼峰命名(如 calculateArea 或 UserInfo),函数名尽量体 -
博客园地址
https://www.cnblogs.com/game-8 -
实验2
task1 #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
task1.c #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_ -
高级语言程序设计第一次作业*
这个作业属于哪个课程:高级语言程序设计 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102400111 姓名:蔡伟仡 1.安装Devc++ 已安装并更新版本 2.作业 2.1 一个简单的c程序 根据课本 -
实验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 -
实验二
task 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 -
20232327 2025-2026-1 《网络与系统攻防技术》实验二实验报告
20232327 2025-2026-1 《网络与系统攻防技术》实验二实验报告 1.实验内容 本次实验需要用到的一些知识: 后门:不经过正常认证流程而访问系统的通道; 后门类型:编译器后门、操作系统后门、应用程序后门、潜伏于操作系统中或伪装成特定应用的专用后门程序; 后门效果:获取敏感信息、执行伪协 -
软件工程第三次作业-结对项目
个人项目 项目 内容 这个作业属于哪个课程 [软件工程](首页 - 计科23级12班 - 广东工业大学 - 班级博客 - 博客园) 这个作业要求在哪里 [作业要求](结对项目 - 作业 - 计科23级12班 - 班级博客 - 博客园) 这个作业的目标 训练个人项目软件开发能力,学会使用性能测试工具和 -
实验2
任务1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 80 6 #define N2 35 7 int main() { 8 int cnt; 9 int rando -
实验2
task1.c 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 #define N1 80 7 #define N2 35 8 9 int main(){ 10 int cnt; 11 int -
实验1 现代C++编程初体验
一、实验结论 1. 实验任务1 程序源代码 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostrea -
实验一
任务一: 代码部分: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include -
第一次小组作业(四则运算)
四则运算 成员 谢希哲(3223004776)、贺海伦(3223004773) 这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class34Grade23ComputerScience/ 这个作业要求在哪里 https://edu.cnblogs.co -
实验1 现代C++编程初体验
任务一: 源代码task1.cpp 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 template<typename T> 6 void output(const T&c); 7 -
实验一
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: reverse 无返回值,会改变原容器 reverse_copy不修改原容器 rotate 将一段元素移动至另一段后,分别代表序列起始,支点,末尾 #include <iostream> #include <string> #include <vector> #include <algo -
实验1
1.实验任务1 源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(const T &c); -
实验1 现代C++编程初体验
实验任务 1 验证性实验 在C++编码环境中,输入、运行并观察以下代码,结合运行结果和注释,体验使用C++标准库进行编程的便捷性。从面 向对象编程范式的角度,体会封装与基于接口编程的意义。 1 #include <iostream> 2 #include <string> 3 #include <v -
实验一
实验任务一: #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1(); void t