摘要: 2.实验任务2 GradeCalc.hpp 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 阅读全文
posted @ 2024-11-24 13:33 It-just-works 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 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 Button { 1 阅读全文
posted @ 2024-11-04 18:09 It-just-works 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const T &t); 阅读全文
posted @ 2024-10-23 13:41 It-just-works 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; // 声明 // 模板函数声明 template<typename T> void o 阅读全文
posted @ 2024-10-10 13:21 It-just-works 阅读(12) 评论(0) 推荐(0) 编辑
摘要: task4 #include <stdio.h> #include <string.h> #define N 5 #define M 80 int main() { char songs[N][M]; FILE* fp; fp = fopen("data1.txt", "r"); if (fp == 阅读全文
posted @ 2023-12-20 22:08 It-just-works 阅读(3) 评论(0) 推荐(0) 编辑
摘要: task.4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 阅读全文
posted @ 2023-12-11 20:37 It-just-works 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务一 1.1 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, int 阅读全文
posted @ 2023-11-27 17:27 It-just-works 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1、实验任务一 1.1 #include <stdio.h> #define N 4 void test1() { int a[N] = {1, 9, 8, 4}; int i; // 输出数组a占用的内存字节数 printf("sizeof(a) = %d\n", sizeof(a)); // 输 阅读全文
posted @ 2023-11-13 20:48 It-just-works 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 一、实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); ?/ 阅读全文
posted @ 2023-10-30 22:16 It-just-works 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 374 #define N2 465 int main() { system("color E5"); int number; 阅读全文
posted @ 2023-10-16 20:07 It-just-works 阅读(9) 评论(0) 推荐(0) 编辑