摘要: #pragma once #include<iostream> using std::cout; using std::endl; template<typename T> class Vector { public: Vector(T n) :size(n) { p = new T[n]; } V 阅读全文
posted @ 2022-12-06 19:50 zwygyyds 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 实验任务 四 #pragma once #include<iostream> #include<string> using namespace std; class MachinePets { public: MachinePets(const string s):nickname(s){} vir 阅读全文
posted @ 2022-11-28 21:33 zwygyyds 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 试验任务五 头文件 #pragma once #include<iostream> #include<string> #include<iomanip> #include<vector> using namespace std; class Info { public: Info() {} Info 阅读全文
posted @ 2022-10-20 17:08 zwygyyds 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 试验任务4 Complex.cpp #pragma once#include<iostream>#include<cmath>class Complex { public: Complex(); Complex(double newreal); Complex(double newreal, dou 阅读全文
posted @ 2022-10-19 11:26 zwygyyds 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 试验任务一 task 1: #include <iostream> #include <string> #include <vector> int main() { using namespace std; string s1; // 创建一个string对象 string s2{ "c plus 阅读全文
posted @ 2022-10-03 17:27 zwygyyds 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 试验任务一 #include <stdio.h> #define N 5 // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; } STU; // 函数声明 vo 阅读全文
posted @ 2021-12-23 23:36 zwygyyds 阅读(51) 评论(1) 推荐(0) 编辑
摘要: 试验任务一 #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; 阅读全文
posted @ 2021-12-20 17:24 zwygyyds 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 #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; // 阅读全文
posted @ 2021-12-10 23:40 zwygyyds 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 实验任务5 vectorInt.hpp 1 #pragma once 2 #include<iostream> 3 using namespace std; 4 class vectorInt{ 5 public: 6 vectorInt(int n); 7 vectorInt(int n,int 阅读全文
posted @ 2021-12-01 15:27 zwygyyds 阅读(67) 评论(1) 推荐(0) 编辑
摘要: 试验任务一 #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 阅读全文
posted @ 2021-11-29 13:00 zwygyyds 阅读(73) 评论(3) 推荐(0) 编辑