-
实验7
实验任务4 代码 #include<stdio.h> #define N 100 int main() { int line = 1, count = 0; FILE* fp; char ch; fp = fopen("C:\\Users\\kongj\\Downloads\\data4_20251 -
实践大作业
项目信息 内容描述 课程 2025数据采集与融合技术 组名、项目简介 组名: 基米大哈气 项目背景: 针对B站视频评论信息量大、内容杂乱的问题,提供智能化的筛选与分类方案,帮助用户快速了解视频评论风向。 项目目标: 开发一个支持评论爬取、智能分类、违禁词管理及可视化分析的综合系统,实现对评论内容的精 -
实验7
任务4 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #define N 100 int main() { FILE* fp; fp = fopen("data4.txt", "r"); if (fp == NULL) { pri -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx/ 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500405 姓名:刘诺涵 (1)设计一个按值 -
实验3
任务1 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_lab -
实验3
一、实验任务1 源代码button.hpp 1 #pragma once 2 #include<iostream> 3 #include<string> 4 class Button{ 5 public: 6 Button(const std::string &label_); 7 const st -
OOP-实验3
实验任务1 源代码task1 1 // Button类定义、实现 2 3 #pragma once 4 5 #include <iostream> 6 #include <string> 7 8 class Button 9 { 10 public: 11 Button(const std::str -
第六次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500418 姓名:王俊豪 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500427 姓名:廖伦哲 (1)设计一个按值传 -
数据采集第三次作业
目录 作业一 运行代码及结果-1 心得体会-1 作业二 运行代码及结果-2 心得体会-2 作业三 运行代码及结果-3 心得体会-3 作业一: 运行代码及结果-1 关键代码 1、控制总页数36页、总图片136张 max_pages, max_images = 36, 136 page_count = -
实验三
实验任务1 代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& g -
实验三
实验任务一: 源代码: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("modify -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500422 姓名:陈进和 (1)定义一个二维数 -
实验3
##实验任务1 #代码 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button 7 { 8 public: 9 Button(const std::string& label_); 10 const st -
实验三
任务1: 源代码task1.cpp: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button( -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500323 姓名:黄铭昊 一、定义一个二维数组 -
实验三
任务一 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_lab -
实验4
#pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string& cname); void input(int n); // -
实验六
实验任务1 源代码contestant.hpp 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 struct Contestant { 6 long id; // 学号 7 std::st -
实验6
实验任务1: utils.hpp源代码: 1 #pragma once 2 #include <fstream> 3 #include <iostream> 4 #include <stdexcept> 5 #include <string> 6 #include <vector> 7 #inclu