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

    4.0 include <stdio.h> define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int s
     程序设计基础(南京信息工程大学)   135hlj   2025-12-25 22:19    0    7
  • 6

    4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int s
     程序设计基础(南京信息工程大学)   少女研究司长   2025-12-25 22:11    0    6
  • 高级语言程序设计第十次个人作业

    高级语言程序设计第十次个人作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第十次个人作业 学号:052406103 姓名:叶银珍 作业内容 (1)编写一个程序,将一个文件的内容复制到另一个文件中。 #include <stdio.h> #include <string
     2025高级语言程序设计(福州大学)   叶银珍   2025-12-26 19:07    0    6
  • 实验7

    实验任务4 代码 #include<stdio.h> #define N 100 int main() { int line = 1, count = 0; FILE* fp; char ch; fp = fopen("C:\\Users\\kongj\\Downloads\\data4_20251
     程序设计基础(南京信息工程大学)   道秋   2025-12-26 14:22    0    6
  • 实验7

    实验任务4 源代码 #include <stdio.h> #include <ctype.h> int main(){ FILE *fp; char ch; int lines=0; int chars=0; fp=fopen("data4.txt","r"); if(fp==NULL){ prin
     程序设计基础(南京信息工程大学)   fhe   2025-12-24 20:18    0    6
  • 实验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    0    6
  • 实验六

    任务四 #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    0    6
  • 实验6

    test1 点击查看代码 #include<stdio.h> #include<string.h> #define N 2 typedef struct student{ int id; char name[20]; char subject[20]; double perf; double mid
     程序设计基础(南京信息工程大学)   牛汝顺   2025-12-25 13:21    0    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-25 11:37    0    6
  • NUIST 《程序设计基础》 实验6

    第六次实验课~ 点击展开实验1~3 Task1 <task1.c> 源代码 点击查看代码 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max
     程序设计基础(南京信息工程大学)   安杰awa   2025-12-25 14:23    0    6
  • 实验六

    任务1 任务2 任务3 任务4 #include <stdio.h> #include <string.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; //
     程序设计基础(南京信息工程大学)   邹秉祥   2025-12-25 09:51    0    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

    实验任务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    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
  • 实验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    0    6
  • 实验六

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

    实验四: 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    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
  • 实验6

    任务一 代码 1 #pragma once 2 #include <<iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号(原文缺失分号,补充修正) 8 std::str
     面向对象程序设计(南京信息工程大学)   duser   2025-12-21 23:40    0    6
  • 实验6

    实验任务1 源代码: 点击查看contestant.hpp #pragma once #include <<iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string na
     面向对象程序设计(南京信息工程大学)   王扁   2025-12-21 23:03    0    6
< Prev123456789101112···19Next >

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