摘要: 实验任务一 代码 window.hpp 1 #pragma once 2 #include "button.hpp" 3 #include <vector> 4 #include <iostream> 5 6 using std::vector; 7 using std::cout; 8 using 阅读全文
posted @ 2024-11-05 03:19 starming 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 代码 t.h 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 & 阅读全文
posted @ 2024-10-25 16:53 starming 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 代码 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include <iostre 阅读全文
posted @ 2024-10-11 11:37 starming 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 任务4 代码 1 #include <stdio.h> 2 #include <ctype.h> 3 4 int main() { 5 FILE *file; 6 int count = 0; 7 int ch; 8 9 file = fopen("data4.txt", "r"); 10 if ( 阅读全文
posted @ 2023-12-19 23:55 starming 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 任务4 代码 1 #include <stdio.h> 2 #include <string.h> 3 4 #define N 10 5 6 typedef struct { 7 char isbn[20]; // isbn号 8 char name[80]; // 书名 9 char author 阅读全文
posted @ 2023-12-12 01:38 starming 阅读(19) 评论(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-30 21:13 starming 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 任务1 1.1 代码 1 #include <stdio.h> 2 #define N 4 3 4 void test1() { 5 int a[N] = {1, 9, 8, 4}; 6 int i; 7 8 printf("sizeof(a) = %d\n", sizeof(a)); 9 10 f 阅读全文
posted @ 2023-11-15 20:44 starming 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 任务1 代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 void print_text(int line, int col, char 阅读全文
posted @ 2023-11-05 15:53 starming 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 374 7 #define N2 465 8 int main() 9 { 10 int numb 阅读全文
posted @ 2023-10-21 00:45 starming 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 1.1代码 1 // 打印一个字符小人 2 3 #include <stdio.h> 4 int main() 5 { 6 printf(" O\n"); 7 printf("<H>\n"); 8 printf("I I\n"); 9 printf(" O\n"); 10 printf( 阅读全文
posted @ 2023-09-29 21:03 starming 阅读(30) 评论(0) 推荐(0) 编辑