知迩

2024年11月20日

实验4 类的组合、继承、模板类、标准库

摘要: 实验任务2 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 8 using std::ve 阅读全文

posted @ 2024-11-20 13:36 知迩 阅读(5) 评论(0) 推荐(0) 编辑

2024年11月8日

实验3 类和对象_基础编程2

摘要: 实验任务1 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 11 public: 12 阅读全文

posted @ 2024-11-08 20:35 知迩 阅读(4) 评论(0) 推荐(0) 编辑

2024年10月23日

实验2 类和对象_基础编程1

摘要: 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 10:41 知迩 阅读(2) 评论(0) 推荐(0) 编辑

2024年10月11日

实验1 现代C++编程初体验

摘要: 实验任务1 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include <iostream> 阅读全文

posted @ 2024-10-11 10:12 知迩 阅读(7) 评论(0) 推荐(0) 编辑

2021年12月29日

实验7

摘要: 任务1 #include <stdio.h> #define N 5 // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; } STU; // 函数声明 void 阅读全文

posted @ 2021-12-29 13:14 知迩 阅读(27) 评论(1) 推荐(0) 编辑

2021年12月20日

实验6

摘要: 任务1 #include <stdio.h> #define N 5 int binarySearch(int *x, int n, int item); int main() { int a[N] = {2, 7, 19, 45, 66}; int i, index, key; printf("数 阅读全文

posted @ 2021-12-20 08:57 知迩 阅读(23) 评论(1) 推荐(0) 编辑

2021年12月12日

实验5

摘要: 任务1 #include<stdio.h> #define N 5 void output(int x[],int n); int main() { int x[N]={9,55,30,27,22}; int i; int k; //最大元素下标 int t; //中间变量 printf("orig 阅读全文

posted @ 2021-12-12 16:14 知迩 阅读(25) 评论(1) 推荐(0) 编辑

2021年12月6日

实验4

摘要: 任务1 #include<stdio.h> const int N = 4; int main() { int a[N] = {2, 0, 2, 1}; char b[N] = {'2', '0', '1', '1'}; int i; printf("sizeof(int) = %d\n", siz 阅读全文

posted @ 2021-12-06 22:05 知迩 阅读(33) 评论(2) 推荐(0) 编辑

2021年11月28日

实验3

摘要: 任务一 #include<stdio.h> long long fac(int n); int main() { int i, n; printf("Enter n: "); scanf("%d", &n); for(i = 1; i <= n; ++i) printf("%d!=%lld\n", 阅读全文

posted @ 2021-11-28 22:16 知迩 阅读(28) 评论(1) 推荐(0) 编辑

2021年11月15日

实验2

摘要: 任务1 #include<stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n",num); scanf("%d", &num); printf("2049%04d\n",num); scanf("%d", &num 阅读全文

posted @ 2021-11-15 23:24 知迩 阅读(22) 评论(3) 推荐(0) 编辑

导航