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

    任务一: contestant.hpp 1 #pragma once 2 #include<iomanip> 3 #include<iostream> 4 #include<iostream> 5 struct Contestant 6 { 7 long id; 8 std::string name
     面向对象程序设计(南京信息工程大学)   零和星际   2025-12-19 21:13    1    8
  • 实验6

    实验任务4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 i
     程序设计基础(南京信息工程大学)   Carrotz   2025-12-19 19:38    0    8
  • 实验六

    任务一: 1.源代码: (1)contestant.hpp: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string na
     面向对象程序设计(南京信息工程大学)   Likgon   2025-12-19 21:38    0    8
  • 实验6

    实验任务4 代码 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售
     程序设计基础(南京信息工程大学)   道秋   2025-12-20 20:46    0    8
  • OOP-实验六

    一、任务1 1.源代码 contestant.cpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name;
     面向对象程序设计(南京信息工程大学)   愿意讲   2025-12-19 20:39    0    7
  • 实验六

    1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #define N 10 4 5 typedef struct { 6 char isbn[20]; // isbn号 7 char name[80]; // 书名 8 char aut
     程序设计基础(南京信息工程大学)   .hh   2025-12-20 13:55    0    7
  • 高级语言程序设计课程第十次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500333 姓名:陈俊荣 (1)编写一个程序
     2025高级语言程序设计(福州大学)   Ricardo333   2025-12-19 20:05    0    7
  • 实验6

    实验任务1 源代码: contestant.hpp 点击查看代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; std::string name;
     面向对象程序设计(南京信息工程大学)   feifeile   2025-12-21 11:21    0    7
  • 算法第四章作业

    贪心算法:我的理解 贪心算法是一种在每一步选择中都采取当前状态下最优选择的算法策略。它不像动态规划那样考虑所有可能的子问题,也不像回溯法那样进行系统搜索,而是眼光短浅但高效专注——只关心眼前的“最优”,并相信这样的局部最优选择最终能导向全局最优解。贪心算法的核心魅力在于它的简洁与高效。当我们能够证明
     软件工程2403(广东外语外贸大学 - 信息学院)   chenjiao1234   2025-12-21 14:48    0    7
  • 实验六

    任务一 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 st
     面向对象程序设计(南京信息工程大学)   yuu77   2025-12-21 15:38    1    7
  • 实验作业6

    实验4 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-20 14:53    0    7
  • 实验6

    实验任务4 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 sale
     程序设计基础(南京信息工程大学)   a杠兄   2025-12-20 14:17    0    7
  • 实验6

    实验任务1: 源代码: contestant.hpp: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name;
     面向对象程序设计(南京信息工程大学)   系统警告   2025-12-20 17:04    1    7
  • 实验6

    task1 #include <stdio.h> #include <string.h> #define N 3 typedef struct Student{ int id; char name[20]; char subject[20]; double perf; double mid; dou
     程序设计基础(南京信息工程大学)   kanejames   2025-12-23 20:18    0    7
  • 实验6

    1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 10 4 5 typedef struct { 6 char isbn[20]; // isbn号 7 char name[80]; // 书名 8 char author[80]; //
     程序设计基础(南京信息工程大学)   叶永祺   2025-12-23 12:04    0    7
  • 实验六

    任务四 #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 out
     程序设计基础(南京信息工程大学)   Wu_He   2025-12-23 12:58    0    7
  • 实验六

    任务1 点击查看代码 // P286例8.17 // 对教材示例代码作了微调,把输出学生信息设计成函数模块 // 打印不及格学生信息、打印所有学生信息均调用该模块实现 #include <stdio.h> #include <string.h> #define N 10 // 运行程序输入测试时,可
     程序设计基础(南京信息工程大学)   Wedros   2025-12-22 22:22    0    7
  • 实验6

    ##实验任务1 #代码: contestant.hpp: 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8
     面向对象程序设计(南京信息工程大学)   xzhls   2025-12-23 18:29    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
  • 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
     面向对象程序设计(南京信息工程大学)   安宁的空白   2025-12-22 20:16    0    7
< Prev1234567891011···20Next >

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