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

    1. 实验任务1 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname)
     面向对象程序设计(南京信息工程大学)   kdd184   2025-12-02 21:30    0    3
  • 实验4

    实验1 GradeCalc.hpp #include <algorithm> #include <array> #include <cstdlib> #include <iomanip> #include <iostream> #include <numeric> #include <string>
     面向对象程序设计(南京信息工程大学)   风吹翠微远   2025-12-02 17:04    0    3
  • 实验4 组合与继承

    实验任务1 运行结果截图如下 问题1 GradeCalc 类声明中,体现"组合"关系的成员声明及对应功能如下: std::vector<int> grades; grades用于存储所有成绩数据 std::array<int, 5> counts; counts用于统计各分数段人数 std::arr
     面向对象程序设计(南京信息工程大学)   勤垦原   2025-12-02 20:51    0    3
  • 实验四

    任务1 源代码 #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void input(in
     面向对象程序设计(南京信息工程大学)   张毅炜   2025-12-02 23:28    0    3
  • 高级语言程序设计课程第八次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500326 姓名:罗炜 11-1 11-2 1
     2025高级语言程序设计(福州大学)   小夜仆   2025-12-02 21:47    0    3
  • 102302112王光诚作业4

    作业①: 要求: 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 点击查看代码 import time import pymys
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   王光诚   2025-12-02 18:57    0    3
  • 实验四

    任务一 GradeCalc.cpp #include <algorithm> #include <array> #include <cstdlib> #include <iomanip> #include <iostream> #include <numeric> #include <string>
     面向对象程序设计(南京信息工程大学)   yuu77   2025-12-02 19:15    0    3
  • 实验四

    task1 GradeCalc.hpp #pragma once #include<vector> #include<array> #include<string> class GradeCalc{ public: GradeCalc(const std::string &cname); void
     面向对象程序设计(南京信息工程大学)   kk_n   2025-12-02 22:07    1    3
  • 实验四

    实验四 实验任务一 代码 GradeCalc.cpp #include <algorithm> #include <array> #include <cstdlib> #include <iomanip> #include <iostream> #include <numeric> #include
     面向对象程序设计(南京信息工程大学)   ltffff   2025-12-02 21:24    0    3
  • 实验4 组合与继承

    1. 实验任务1 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname)
     面向对象程序设计(南京信息工程大学)   gher   2025-12-02 19:27    0    3
  • 实验4

    #任务1 ##1.源代码 //GradeCal.hpp #include <algorithm> #include <array> #include <cstdlib> #include <iomanip> #include <iostream> #include <numeric> #includ
     面向对象程序设计(南京信息工程大学)   knight-k3   2025-12-02 19:25    0    3
  • 实验4

    task1 (1) 1 #pragma once 2 #include <vector> 3 #include <array> 4 #include <string> 5 class GradeCalc { 6 public: 7 GradeCalc(const std::string &cname
     面向对象程序设计(南京信息工程大学)   deep_l   2025-12-03 07:57    0    3
  • 实验四

    试验任务一: 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(const std::string &cnam
     面向对象程序设计(南京信息工程大学)   yahuao   2025-12-02 20:52    0    3
  • 实验4 组合与继承

    实验1: #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void input(int n
     面向对象程序设计(南京信息工程大学)   晚风吹动荷塘月   2025-12-02 19:16    0    3
  • 实验四

    试验任务一 源代码 GradeCalc.hpp 点击查看代码 #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string
     面向对象程序设计(南京信息工程大学)   feifeile   2025-12-02 13:47    0    3
  • 实验四

    任务一:源代码: 1 #include <iostream> 2 #include <string> 3 #include "GradeCalc.hpp" 4 5 void test() { 6 GradeCalc c1("OOP"); 7 8 std::cout << "录入成绩:\n"; 9 c
     面向对象程序设计(南京信息工程大学)   yyzbh   2025-12-02 19:26    0    3
  • 实验四:组合与继承

    任务一:代码:task.cpp: #include <iostream> #include <string> #include "GradeCalc.hpp" void test() { GradeCalc c1("OOP"); std::cout << "录入成绩:\n"; c1.input(5)
     面向对象程序设计(南京信息工程大学)   唐文鑫   2025-12-02 22:56    0    3
  • 实验4 组合与继承

    实验任务1: 1.源代码 #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void inp
     面向对象程序设计(南京信息工程大学)   Coisini12   2025-12-02 17:21    0    3
  • 20232302 2025-2026-1 《网络与系统攻防技术》实验八实验报告

    1.实验内容 1.1Web前端HTML。能安装启停Apache,编写含表单的HTML网页。 1.2Web前端javascipt。能用JS验证表单并回显欢迎信息,测试XSS注入。 1.3Web后端数据库。能安装配置MySQL,完成建库建用户建表操作。 1.4Web后端数据库连接。能用PHP连接数据库,
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   葛军阳   2025-12-03 16:34    0    3
  • 高级程序语言设计第8次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500415 姓名:林帅前 11.1 11.2
     2025高级语言程序设计(福州大学)   潇山北风   2025-12-04 15:40    0    3
< Prev1···891011121314151617Next >

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