• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 实验6

    实验任务1 实验任务2 实验任务3 3.1 实验任务4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 doubl
     程序设计基础(南京信息工程大学)   25网安1班姚淇奥   2025-12-24 14:09    1    7
  • 实验六

    任务四 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int
     程序设计基础(南京信息工程大学)   luhan777   2025-12-24 18:28    1    7
  • 区间选点问题 贪心算法的理解

    问题 在数轴上给 n 个区间 [aᵢ, bᵢ],选最少的点,让每个区间至少包含一个点。 贪心策略 排序:按区间右端点从小到大排序 选点:从左到右扫描: 如果当前区间没被上一个点覆盖 就选这个区间的右端点作为新点 c++【 sort(区间, 按右端点排序); 点集合 = []; 上一个点 = -∞;
     网络空间安全2402(广东外语外贸大学 - 信息学院)   颜入浴Ccy   2025-12-23 23:42    0    7
  • 实验6

    task1.c task1.c 1 #include <stdio.h> 2 #include <string.h> 3 #define N 3 4 typedef struct student { 5 int id; 6 char name[20]; 7 char subject[20]; 8 d
     程序设计基础(南京信息工程大学)   添罐望仔   2025-12-23 15:18    1    7
  • 实验报告六

    实验四: 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sales
     程序设计基础(南京信息工程大学)   陆绎   2025-12-22 16:41    1    7
  • c++ 6

    ##task1 #代码 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string name;
     面向对象程序设计(南京信息工程大学)   Zhades   2025-12-22 22:10    1    7
  • 实验6

    #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::string major; //
     面向对象程序设计(南京信息工程大学)   晚风吹动荷塘月   2025-12-22 20:19    1    7
  • 实验6

    实验任务1 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名
     面向对象程序设计(南京信息工程大学)   kdd184   2025-12-22 20:34    1    7
  • 回溯法分析最小重量机器设计问题

    一、 回溯法分析最小重量机器设计问题 先明确最小重量机器设计问题定义(回溯法分析的前提): 一台机器由 $n$ 个部件组成,每个部件都有 $m$ 个不同的供应商可选;第 $i$ 个部件从第 $j$ 个供应商采购,对应重量 $w_{ij}$、费用 $c_{ij}$;要求总费用不超过给定上限 $C$,求
     网络空间安全2402(广东外语外贸大学 - 信息学院)   CZJ2402   2025-12-23 14:49    0    7
  • 实验6

    实验任务1 源代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::string
     面向对象程序设计(南京信息工程大学)   交界地第一深情   2025-12-23 17:28    1    7
  • 实验六

    任务一 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 st
     面向对象程序设计(南京信息工程大学)   星空织梦   2025-12-23 16:46    0    7
  • 实验六

    实验六 任务一: 代码部分: utils.hpp: #pragma once #include <fstream> #include <iostream> #include <stdexcept> #include <string> #include <vector> #include "conte
     面向对象程序设计(南京信息工程大学)   栖月水生   2025-12-24 02:59    1    6
  • 实验6

    #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id;// 学号 std::string name; // 姓名 std::string major;// 专
     面向对象程序设计(南京信息工程大学)   HdYi   2025-12-23 23:26    1    6
  • 实验6

    Task1 源代码 Contestant.h #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓
     面向对象程序设计(南京信息工程大学)   永和九年2   2025-12-23 15:26    1    6
  • 实验6

    实验六 实验任务一代码 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name;
     面向对象程序设计(南京信息工程大学)   浠然予墨   2025-12-23 14:34    1    6
  • 实验6 文件I/O与异常处理

    实验任务1: 1.源代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::str
     面向对象程序设计(南京信息工程大学)   Coisini12   2025-12-22 19:26    1    6
  • 高级语言程序设计课程第十次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 姓名:黄思哲 学号:102500433 1. 2. 3. 4.
     2025高级语言程序设计(福州大学)   filvis   2025-12-23 11:18    0    6
  • 数据采集综合实践_第八组_严涛

    1.项目背景 2016 年“全面两孩”后,全国出生人口仍下滑。福建省福州市同样陷入“政策失效”: 福清市 2016 年 2.1 万 → 2023 年 1.2 万,降幅 42%;鼓楼区 2016 年 0.68 万 → 2023 年 0.41 万,降幅 30%。 县级差异显著 → 需要县级粒度预测工具辅
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   浔之   2025-12-22 15:34    0    6
  • 实验六

    任务一 源代码task1.cpp #include <algorithm> #include <iostream> #include <stdexcept> #include <vector> #include "contestant.hpp" #include "utils.hpp" const
     面向对象程序设计(南京信息工程大学)   mm77777   2025-12-22 19:47    1    6
  • 实验6

    1.实验任务1 此部分书写内容: 给出contestant.hpp, utils.hpp, task1.cpp源代码及运行结果截图(屏幕输出截图,及,生成数据文件ans.txt截图) contestant.hpp 点击查看代码 #pragma once #include <iomanip> #inc
     面向对象程序设计(南京信息工程大学)   陈晨aaa   2025-12-24 00:02    1    6
< Prev123456789101112···17Next >

Copyright ©2025 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档