-
高级语言程序设计课程第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500414 姓名:陈树湘 (1)编写一个程序, -
OOP-实验6
实验任务1 源代码 contestent.hpp 点击查看代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string n -
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 -
实验5
实验任务1: 代码: publisher.cpp 1 #include <iostream> 2 #include <string> 3 #include "publisher.hpp" 4 5 Publisher::Publisher(const std::string &name_): name -
复审与事后分析
团队作业6 复审:https://www.cnblogs.com/vemos/p/19376472 事后分析:https://www.cnblogs.com/vemos/p/19376546 -
软件技术基础第四次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 介绍自己小组 姓名-学号 袁哲-2023329301106 高越-2023329301105 姜少奇-2023329301085 许粟尧-2023329301130 小组名称 -
高级语言程序设计课程第十次个人作业
这个作业属于课程:课程链接 这个作业要求在:作业要求 学号:102500408 姓名:阮意舒 程序设计小题 练习1·复制文件中的内容至另一个文件 思路:记得fclose两个文件 练习2·统计文本文件中的字符数 思路:每次读取字符时进行计数 练习3·在控制台打印文件中的文本内容 思路:使用putcha -
实验6 文件I/O与异常处理
实验任务一: 源码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::strin -
实验6 文件I/O与异常处理
Task1 1.源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::str -
OOP-实验6
实验任务1 源代码task1 1 // 结构体Contestant定义及其重载运算符函数>>和<<实现 2 3 #pragma once 4 5 #include <iomanip> 6 #include <iostream> 7 #include <string> 8 9 struct Conte -
实验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:: -
OOP-实验6
实验任务1 源代码 contestant.hpp,utils.hpp,task1.cpp 点击查看代码 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contes -
实验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 -
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; // 售价 -
复审与事后分析
团队作业6 复审:https://www.cnblogs.com/yzx123456/p/19383492 事后分析:https://www.cnblogs.com/yzx123456/p/19379990 -
高级语言程序设计课程第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500305 姓名:赖晓娟 (1)编写一个程序, -
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 -
实验6
任务1: 源代码: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // -
实验6作业
任务4 #include<stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_price; int sales_count; }Book; void ou -
高级语言程序设计第十次作业
高级语言程序设计第十次作业 作业所属课程:我的班级 作业内容:第十次作业 姓名:黄洁琳 学号102500306 1 编写一个程序,将一个文件的内容复制到另一个文件中。 2 编写一个程序,统计一个文本文件中的字符数。 fread返回的是一次读取的字符数,一次读取把一个数组尽可能装满 这里字符数是14的