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

    实验任务1: 源代码: 1 #include<stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = { 1,9,8,4 }; 6 int i; 7 printf("sizeof(x)=%d\n", sizeof(x));
     程序设计基础(南京信息工程大学)   空元   2025-11-14 16:49    1    12
  • 实验六

    实验任务4 #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double
     程序设计基础(南京信息工程大学)   nightmareplus   2025-12-23 16:08    1    11
  • Experiment6

    前三个任务代码均编写并运行验证 Task4: 1 #include <stdio.h> 2 #define N 10 3 typedef struct { 4 char isbn[20]; // isbn号 5 char name[80]; // 书名 6 char author[80]; // 作
     程序设计基础(南京信息工程大学)   郑子鑫   2025-12-22 20:05    1    11
  • 软件技术基础第四次作业

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 成立小组,确立小组名称、成员、分工、口号。 小组名称 Mr.GemChatDouShen 小组成员 2023329301031潘均昊 2023329301024卢哲逸 2023
     25软件技术基础(浙江理工大学)   时空灬无   2025-12-25 23:03    0    11
  • 第四次作业

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 确立小组名称、成员、分工、口号 小组名称 数智星小队 小组口号 云班智算,成绩一算就准! 小组成员 周建昌 2023331200139 范文达 2023331200102 洪尔
     25软件技术基础(浙江理工大学)   zjczcj   2025-12-26 12:38    0    11
  • 软件技术基础第四次作业

    一,小组介绍 这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 介绍自己小组及分工 小组名称 阿伟罗 组长 王浩-2023329301015 成员 周超毅-2023329301017 成员 朱恩豪-2023329301080
     25软件技术基础(浙江理工大学)   forqu   2025-12-26 11:04    0    11
  • 团队作业6——复审与事后分析

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class34Grade23ComputerScience 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/Class34Grade23ComputerScien
     计科23级34班(广东工业大学 - 计算机学院)   柯程炜   2025-12-25 00:41    0    11
  • 实验6

    实验6 c语言结构体和枚举应用编程 #include <stdio.h> #include <string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; // 学号 char name[20]; /
     程序设计基础(南京信息工程大学)   202563430006丁梓轩   2025-12-19 20:19    1    11
  • 实验6

    试验任务4 1 #define _CRT_SECURE_NO_WARNINGS 2 #include<stdio.h> 3 #include<string.h> 4 #define N 10 5 typedef struct { 6 char isbn[20]; 7 char name[80]; 8
     程序设计基础(南京信息工程大学)   空元   2025-12-19 18:40    1    11
  • 实验六

    实验1: 1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 #define N 3 5 typedef struct student{ 6 int id; 7 char name[20]; 8 char subject[2
     程序设计基础(南京信息工程大学)   deepsigh   2025-12-22 23:50    1    11
  • 实验6

    实验任务4 源代码 1 #include <stdio.h> 2 #define N 10 3 #include<stdlib.h> 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[8
     程序设计基础(南京信息工程大学)   每户下山流量   2025-12-21 20:12    1    11
  • 实验6

    实验任务4 源代码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; 6 char name[80]; 7 char author[80]; 8 double sales_price; 9 int sa
     程序设计基础(南京信息工程大学)   wsh12345   2025-12-20 14:07    1    11
  • 实验6

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

    task1 contestant.hpp 1 #pragma once 2 3 #include<iomanip> 4 #include<iostream> 5 #include<string> 6 7 struct Contestant{ 8 //学号/姓名/专业 9 long id; 10 st
     面向对象程序设计(南京信息工程大学)   fg-ever   2025-12-19 01:27    0    11
  • 实验6

    任务1: 源代码: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; //
     面向对象程序设计(南京信息工程大学)   不吃虾仁饭   2025-12-17 22:46    1    11
  • 实验6

    实验任务1: 源代码contestant.hpp 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-19 20:58    1    11
  • 实验6

    一、实验任务1 源代码contestant.hpp 1 #pragma once 2 #include<iomanip> 3 #include<iostream> 4 #include<string> 5 struct Contestant{ 6 long id; 7 std::string nam
     面向对象程序设计(南京信息工程大学)   鱼籽不煮粥   2025-12-19 21:32    1    11
  • Test6

    任务一 源代码 contestant.hpp 点我展开代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string nam
     面向对象程序设计(南京信息工程大学)   董建标   2025-12-17 09:34    1    11
  • 20234320 2025-2026-1 《网络与系统攻防技术》实验八实验报告

    20234320 2025-2026-1 《网络与系统攻防技术》实验八实验报告 一、实验内容 1.Web 服务环境搭建:完成Apache服务器的安装、启动与停止操作,掌握基础 Web 服务的部署与运维。 2.前端技术实践:理解HTML页面结构,掌握表单的设计与使用,区分 GET与POST方法的特性,
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   linlinluo   2025-12-06 19:11    0    11
  • 软件技术基础第三次作业

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 <以两人小组为单位,完成一个“电梯演讲”作业> 姓名-学号 <何乙文>-<2023329301082> 姓名-学号 <卢淳凯>-<2023329301083> 视频链接 htt
     25软件技术基础(浙江理工大学)   红烧code   2025-12-01 18:00    0    11
< Prev1···4849505152535455565758···200Next >

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