-
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500332 姓名:郑雷 2. 3. 4. 5. -
20232418 2025-2026-1 《网络与系统攻防技术》实验五实验报告
20232418 2025-2026-1 《网络与系统攻防技术》实验五实验报告 1.实验内容 1.1通过whois、dig、nslookup等命令查询DNS域名、IP地址的详细信息。 1.2通过资源监视器和在线工具得到IP地址并确定其地理位置。 1.3nmap开源软件的使用方式,并进行资料搜集和分析 -
第三次作业
1、实践报告 我们先用一个二维数组a来接收数据,并排成下三角的样子,再定义一个新数组b来存放每个位置对应的最大和 1.1 对于新数组b来说,除第一行外,剩下的每一行的每一个元素的值都等于该位置在a数组的值加上该位置上面或左上的最大值,用编程语言表示为b[i][j] = a[i][j] + max(b -
20232305 2025-2026-1 《网络与系统攻防技术》实验五实验报告
1.实验内容 1.1掌握基本的信息搜集方法 1.2学习并掌握端口扫描及漏洞扫描技术 1.3利用所学知识对自己隐私加以保护 2.实验过程 2.1从www.besti.edu.cn、baidu.com、sina.com.cn中选择一个DNS域名进行查询,获取信息 2.1.1查询www.baidu.com -
算法第三次作业
对于数字三角形问题的动态规划分析 给定一个由n行数字组成的数字三角形,试设计一个算法,计算出从三角形的顶至底的一条路径,使该路径经过的数字总和最大(每一步只能从当前位置向下或向右下移动)。由递归方程dp[i][j] = max(dp[i-1][j-1], dp[i-1][j]) + triangle -
experiment 4
一、实验目的 能正确使用C语言定义、初始化、访问、输入/输出一维/二维数组 能正确使用数组作为函数参数 针对具体问题场景,能灵活用数组组织数据,设计算法编程解决实际问题 二、实验准备 实验前,请复习第5章以下内容: C语法规则:数组(一维/二维)的定义、初始化、访问 C语法规则:数组作为函数参数时, -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500415 姓名:林帅前 一.程序设计 1. -
实验4
实验1 源代码 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 printf("sizeof(x) = %d\n", sizeof( -
20232401 2024-2025-1 《网络与系统攻防技术》实验五实验报告
20232401 2024-2025-1 《网络与系统攻防技术》实验五实验报告 1.实验内容 1.1 DNS查询获取相关信息 1.2 实际场景获得通信对方的IP并获取地理位置 1.3 nmap扫描靶机获取信息 1.4 Nessus扫描靶机获取信息并尝试利用漏洞 1.5 信息检索与个人隐私情况探查 2 -
20232412 2024-2025-1 《网络与系统攻防技术》实验五实验报告
1.实验内容 实验要求 (1)选择一个DNS域名进行查询,获取如下信息:DNS注册人及联系方式、该域名对应IP地址、IP地址注册人及联系方式、IP地址所在国家、城市和具体地理位置。 PS:使用whois、dig、nslookup、traceroute、以及各类在线和离线工具进行搜集信息(要求必须用W -
实验4
实验任务1 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = {1, 9, 8, 4}; 6 int i; 7 printf("sizeof(x) = %d\n", sizeof(x)); 8 -
实验四
实验四 任务1. 1.不连续,相同 2.不连续,相同,相差16,数组中第一个数和第二个数相差16 任务2. 形参为int x[i]和int n,实参为n和x input作用为依次输入数组x[i],compute作用为去除一个最大和最小值剩下数的平均值 任务3. 形参为int x[][N]和int n -
实验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 ( -
实验4
实验任务1 源代码 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("size -
实验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 -
实验四
task 1: #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(" -
实验四
实验1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); -
实验四
task.1 点击查看代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", si -
实验4
test1 源代码 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 printf("sizeof(x) = %d\n", sizeo -
实验四
实验任务一 源代码 点击查看代码 #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