摘要:
1. 实验任务1 验证性实验 知识点: 创建文件并输出内容: ofstream out("ans.txt"); //ofstream允许程序将数据写入文件; //out("ans.txt")创建一个名为ans.txt的文件,并将这个文件与名为out的ofstream对象关联起来 out << "He 阅读全文
摘要:
1. 实验任务1 验证性实验 知识点: 抽象类 // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const string& s = ""); // 构造函数 //构造函数接受一个string类型的参数s,默认值为空字符串 阅读全文
摘要:
1. 实验任务1 验证性实验 2. 实验任务2 GradeCalc.hpp源代码: #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <io 阅读全文
摘要:
1. 实验任务1 button.hpp源代码: 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Butto 阅读全文
摘要:
1. 实验任务1 t.h源代码: 1 #pragma once 2 #include <string> 3 4 // 类T: 声明 5 class T { 6 public: 7 // 对象属性、方法 8 T(int x = 0, int y = 0); // 普通构造函数 9 T(const T& 阅读全文
摘要:
1. 实验任务1 task1源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 阅读全文
摘要:
1. 实验任务1 【验证性实验】 2. 实验任务2 【验证性实验】 3. 实验任务3 【验证性实验】 4. 实验任务4 task4源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 int main(){ 5 FILE *fp; 6 int t=0; 阅读全文
摘要:
1. 实验任务1 【验证性实验】 2. 实验任务2 【验证性实验】 3. 实验任务3 【验证性实验】 4. 实验任务4 task4源代码: 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 10 4 5 typedef struct { 6 阅读全文
摘要:
1. 实验任务1 task1_1源代码: 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 5 4 5 void input(int x[], int n); 6 void output(int x[], int n); 7 void fin 阅读全文
摘要:
1.实验任务1 task1_1源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 5 void test1() { 6 int a[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组a占用的内存字节数 阅读全文