-
高级程序语言设计的四次作业
一.运行程序 1. 2. 二. 1.求pi 2.逻辑表达式中的运算符,只有会影响表达式求值时,才会执行 3.用for循环输出六行,第一行有FEDCBA,第二行是FEDCB,第三行是FEDC....,以此类推 4.编程输入n, 计算s=1+(1+2)+(1+2+3)+…+(1+2+3+4+…n)。 5 -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500326 姓名:罗炜 9.11.1 9.11 -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500332 姓名:郑雷 2. 3. 4. 5. -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500419 姓名:吴鸿益 1. 设计一个ge -
实验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 < -
实验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(" -
实验作业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 8 printf("sizeof(x)=%d\n", sizeof(x)); 9 fo -
20232422 2024-2025-1 《网络与系统攻防技术》实验四实验报告
20232422 龙浩然 2025-2026-1 《网络与系统攻防技术》实验四实验报告 1. 实验内容 1.1 识别恶意代码的文件类型标识,完成脱壳与字符串提取。 1.2 用 IDA Pro 静态分析 crackme1.exe 与 crackme2.exe,找到特定输入使其输出成功信息。 1.3 分 -
实验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 -
实验四
task1 #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 -
实验四
实验任务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 printf("sizeof(x) = %d\n", sizeof(x) -
实验六
实验1: 1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 #define N 3 5 typedef struct student{ 6 int id; 7 char name[20]; 8 char subject[2 -
数据采集实践大项目
项目信息 内容描述 课程 2025数据采集与融合技术 组名、项目简介 组名: 基米大哈气 项目背景: 针对B站视频评论信息量大、内容杂乱的问题,提供智能化的筛选与分类方案,帮助用户快速了解视频评论风向。 项目目标: 开发一个支持评论爬取、智能分类、违禁词管理及可视化分析的综合系统,实现对评论内容的精 -
实验6
实验6 c语言结构体和枚举应用编程 #include <stdio.h> #include <string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; // 学号 char name[20]; / -
实验6
试验任务4 1 #define _CRT_SECURE_NO_WARNINGS 2 #include<stdio.h> 3 #include<string.h> 4 #define N 10 5 typedef struct { 6 char isbn[20]; 7 char name[80]; 8 -
实验6
实验任务4 源代码 1 #include <stdio.h> 2 #define N 10 3 #include<stdlib.h> 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[8 -
实验6
实验任务4 源代码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; 6 char name[80]; 7 char author[80]; 8 double sales_price; 9 int sa -
行之助项目爬虫
这个项目属于哪个课程 2025数据采集与融合技术 组名、项目简介 组名:好运来项目需求:智能运动辅助应用,针对用户上传的运动视频(以引体向上为核心),解决传统动作评估依赖主观经验、反馈延迟的问题,提供客观的动作分析与改进建议项目目标:对用户上传的运动视频进行动作分析、评分,提供个性化改进意见,包含完 -
oop实验六
实验六 test1 源代码: 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string na -
实验六
实验任务4 #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double