-
软件技术基础第四次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 介绍自己小组 姓名-学号 袁哲-2023329301106 高越-2023329301105 姜少奇-2023329301085 许粟尧-2023329301130 小组名称 -
csq-蓝桥杯python-基础语法3-循环语句进阶
Python循环结构全解析:从基础到进阶 引言 循环结构是编程中的重要组成部分,关于for、while循环的使用方法,以及break、continue语句的应用技巧。 一、for循环回顾 for循环主要用于遍历一个序列(如列表、range生成的序列),其循环次数在开始前是确定的。例如,计算1到10的 -
复审与事后分析
团队作业6 复审:https://www.cnblogs.com/vemos/p/19376472 事后分析:https://www.cnblogs.com/vemos/p/19376546 -
OOP-实验6
实验任务1 源代码 contestent.hpp 点击查看代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string n -
团队作业6 - 复审与事后分析
From KFCoder✅️ 项目 内容 这个作业属于哪个课程 ->点我进入课程主页 这个作业要求在哪里 ->点我查看作业要求 Alpha阶段项目复审 ->点我查看项目复审结果 事后诸葛亮分析报告 ->点我查看事后诸葛亮分析报告 -
团队作业6——复审与事后分析
复审与事后分析 复审:https://www.cnblogs.com/AprilXie/p/19384686 事后分析:https://www.cnblogs.com/AprilXie/p/19384724 -
实验六 文件I/O与异常处理
实验6 文件I/O与异常处理 实验任务1 源码 task1.cpp #include <algorithm> #include <iostream> #include <stdexcept> #include <vector> #include "contestant.hpp" #include " -
opp实验6
一.实验任务1 1.源代码 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string nam -
实验6 文件I/O与异常处理
实验任务一: 源码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::strin -
复审与事后分析
团队作业6 复审:https://www.cnblogs.com/yzx123456/p/19383492 事后分析:https://www.cnblogs.com/yzx123456/p/19379990 -
我的总结
轻舟已过万重山——智能旅游助手开发总结 一、学期回顾 1.1 回顾你对于软件工程课程的想象 在学期开始前,我对软件工程课程的想象是:这是一门教授软件开发流程和方法的课程,会学习到如何将一个想法转化为可运行的软件产品。我期待能够学习到团队协作开发的经验,掌握实际项目开发的流程和工具,以及如何解决开发过 -
实验6 文件I/O与异常处理
Task1 1.源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::str -
实验六
任务1: 代码: 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string name; // -
实验6 文件I/O与异常处理
一、实验任务1 源代码task1 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string -
OOP-实验6
实验任务1 源代码task1 1 // 结构体Contestant定义及其重载运算符函数>>和<<实现 2 3 #pragma once 4 5 #include <iomanip> 6 #include <iostream> 7 #include <string> 8 9 struct Conte -
Experiment 6
Task 4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 -
102302134陈蔡裔数据采集综合实践
综合实践 引言 大家好,我是陈蔡裔,来自“途个开心——旅行规划与记录助手”项目团队。在为期数月的项目开发中,我主要担任前端架构师,负责从技术选型到组件开发的全链路实现。本文将系统性地分享我在Vue3、组件化架构、数据可视化以及性能优化方面的技术实践与深度思考。 一、技术栈选型与架构设计 1.1 为什 -
实验6
实验任务4 #include<stdio.h> #define N 10 typedef struct{ char isbn[20]; char name[80]; char author[20]; double sales_price; int sales_count; }Book; void o -
OOP-实验6
实验任务1 源代码 contestant.hpp,utils.hpp,task1.cpp 点击查看代码 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contes -
实验6 文件I/O与异常处理
实验任务1 程序源代码如下: contestant.hpp 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; 8 std::