摘要: 实验任务二: #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <iomanip> using std::vector; using std 阅读全文
posted @ 2024-11-19 15:17 王勇智 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 实验任务一: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const string &text) 阅读全文
posted @ 2024-11-05 21:33 王勇智 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务一: #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 20:40 王勇智 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <st 阅读全文
posted @ 2024-10-09 17:28 王勇智 阅读(12) 评论(0) 推荐(1) 编辑
摘要: 实验一 // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 80 typedef struct { char name[N]; // 书名 char author[N]; // 作者 } Book; int main() { Book x[] = 阅读全文
posted @ 2023-12-14 21:44 王勇智 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include<stdlib.h> typedef struct { char name[20]; // 姓名 char phone[12]; // 手机号 int vip; // 是否为紧急联系人,是取1;否则取0 } 阅读全文
posted @ 2023-12-13 20:11 王勇智 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 #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); 阅读全文
posted @ 2023-11-27 23:09 王勇智 阅读(10) 评论(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("%p 阅读全文
posted @ 2023-11-17 21:18 王勇智 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); void 阅读全文
posted @ 2023-11-02 08:43 王勇智 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、实验任务1 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define N1 374 #define N2 465 int main(){ int number; int i; srand(time(0)); 阅读全文
posted @ 2023-10-17 22:57 王勇智 阅读(6) 评论(0) 推荐(0) 编辑