摘要: 任务2: 代码: #include "GradeCalc.hpp" #include <iomanip> void test() { int n; cout << "输入班级人数: "; cin >> n; GradeCalc c1("OOP", n); cout << "录入成绩: " << en 阅读全文
posted @ 2024-11-19 00:16 忘忧熊 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 任务1: #include "window.hpp" #include <iostream> using std::cout; using std::cin; void test() { Window w1("new window"); w1.add_button("maximize"); w1.d 阅读全文
posted @ 2024-11-04 20:42 忘忧熊 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 任务1: t.h代码: #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T(T &&t) 阅读全文
posted @ 2024-10-23 15:27 忘忧熊 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; template<typename T> void output(const T &c); void t 阅读全文
posted @ 2024-10-10 20:05 忘忧熊 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int main() { FILE* fp; fp = fopen("data4.txt", "r"); if (fp == NULL) { printf("fail to open file\n"); return 1; 阅读全文
posted @ 2023-12-21 14:19 忘忧熊 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int sal 阅读全文
posted @ 2023-12-11 19:39 忘忧熊 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 任务1 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax); i 阅读全文
posted @ 2023-11-27 19:31 忘忧熊 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define N 4 void test1() { int a[N] = {1, 9, 8, 4}; int i; printf("sizeof(a) = %d\n", sizeof(a)); for (i = 0; i < N; ++i) printf("% 阅读全文
posted @ 2023-11-13 21:04 忘忧熊 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); void print_spaces(int n); voi 阅读全文
posted @ 2023-10-30 20:55 忘忧熊 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 问题1答案:随机获得一个从364到465之间的数。 问题2答案:获得5个不重复的最后3个数在363到465之间的学号。 #include<stdio.h> int main() { char sign; while(scanf("%c",&sign)!=EOF) { if(sign== 阅读全文
posted @ 2023-10-16 17:36 忘忧熊 阅读(7) 评论(0) 推荐(0) 编辑