首页 > 编程语言 >实验1 现代C++编程初体验

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

时间:2024-10-11 11:22:43浏览次数:1  
标签:初体验 cout int void 编程 C++ v0 v1 include

任务1

代码:

  1 // 现代C++标准库、算法库体验
  2 // 本例用到以下内容:
  3 // 1. 字符串string, 动态数组容器类vector、迭代器
  4 // 2. 算法库:反转元素次序、旋转元素
  5 // 3. 函数模板、const引用作为形参
  6 
  7 #include <iostream>
  8 #include <string>
  9 #include <vector>
 10 #include <algorithm>
 11 
 12 using namespace std;
 13 
 14 // 声明
 15 // 模板函数声明
 16 template<typename T>
 17 void output(const T &c);
 18 
 19 // 普通函数声明
 20 void test1();
 21 void test2();
 22 void test3();
 23 
 24 int main() {
 25     cout << "测试1: \n";
 26     test1();
 27 
 28     cout << "\n测试2: \n";
 29     test2();
 30 
 31     cout << "\n测试3: \n";
 32     test3();
 33 }
 34 
 35 // 函数实现
 36 // 输出容器对象c中的元素
 37 template <typename T>
 38 void output(const T &c) {
 39     for(auto &i: c)
 40         cout << i << " ";
 41     cout << endl;
 42 }
 43 
 44 // 测试1
 45 // 组合使用算法库、迭代器、string反转字符串
 46 void test1() {
 47     string s0{"0123456789"};
 48     cout << "s0 = " << s0 << endl;
 49 
 50     string s1{s0};
 51     reverse(s1.begin(), s1.end());  // 反转指定迭代器区间的元素
 52     cout << "s1 = " << s1 << endl;
 53 
 54     string s2{s0};
 55     reverse_copy(s0.begin(), s0.end(), s2.begin()); // 将指定迭代区间的元素拷贝到指定迭代器开始的目标区间,并且在复制过程中反转次序
 56     cout << "s2 = " << s2 << endl;
 57 }
 58 
 59 // 测试2
 60 // 组合使用算法库、迭代器、vector反转动态数组对象vector内数据
 61 void test2() {
 62     vector<int> v0{2, 0, 4, 9};
 63     cout << "v0: ";
 64     output(v0);
 65 
 66     vector<int> v1{v0};
 67     reverse(v1.begin(), v1.end());
 68     cout << "v1: ";
 69     output(v1);
 70 
 71     vector<int> v2{v0};
 72     reverse_copy(v0.begin(), v0.end(), v2.begin());
 73     cout << "v2: ";
 74     output(v2);
 75 }
 76 
 77 // 测试3
 78 // 组合使用算法库、迭代器、vector实现元素旋转移位
 79 void test3() {
 80     vector<int> v0{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
 81     cout << "v0: ";
 82     output(v0);
 83 
 84     vector<int> v1{v0};
 85     rotate(v1.begin(), v1.begin()+1, v1.end());  // 旋转指定迭代器区间[v1.begin(), v1.end())之间的数据项,旋转后从迭代器v1.begin()+1位置的数据项开始
 86     cout << "v1: ";
 87     output(v1);
 88 
 89     vector<int> v2{v0};
 90     rotate(v2.begin(), v2.begin()+2, v2.end());
 91     cout << "v2: ";
 92     output(v2);
 93 
 94     vector<int> v3{v0};
 95     rotate(v3.begin(), v3.end()-1, v3.end());
 96     cout << "v3: ";
 97     output(v3);
 98 
 99     vector<int> v4{v0};
100     rotate(v4.begin(), v4.end()-2, v4.end());
101     cout << "v4: ";
102     output(v4);
103 }

 

 

实验结果截图:

 

任务2

代码:

 1 #include <iostream>
 2 #include <vector>
 3 #include <string>
 4 #include <algorithm>
 5 #include <numeric>
 6 #include <iomanip>
 7 
 8 using namespace std;
 9 
10 // 函数声明
11 // 模板函数声明
12 template<typename T>
13 void output(const T &c);
14 
15 // 普通函数声明
16 int rand_int_100();
17 void test1();
18 void test2();
19 
20 int main() {
21     cout << "测试1: \n";
22     test1();
23 
24     cout << "\n测试2: \n";
25     test2();
26 }
27 
28 // 函数实现
29 // 输出容器对象c中的元素
30 template <typename T>
31 void output(const T &c) {
32     for(auto &i: c)
33         cout << i << " ";
34     cout << endl;
35 }
36 
37 // 返回[0, 100]区间内的一个随机整数
38 int rand_int_100() {
39     return rand() % 101;
40 }
41 
42 // 测试1
43 // 对容器类对象指定迭代器区间进行赋值、排序
44 void test1() {
45     vector<int> v0(10);  // 创建一个动态数组对象v0, 对象大小为10
46     generate(v0.begin(), v0.end(), rand_int_100); // 产生[0, 100]之间的随机整数赋值给指定迭代器区间[v0.begin(), v0.end())内的每个数据项
47     cout << "v0: ";
48     output(v0);
49 
50     vector<int> v1{v0};
51     sort(v1.begin(), v1.end()); // 对指定迭代器区间[v1.begin(), v1.end())内数据项进行升序排序
52     cout << "v1: ";
53     output(v1);
54 
55     vector<int> v2{v0};
56     sort(v2.begin()+1, v2.end()-1); // 对指定迭代器区间[v1.begin()+1, v1.end()-1)内数据项进行升序排序
57     cout << "v2: ";
58     output(v2);
59 }
60 
61 // 测试2
62 // 对容器类对象指定迭代器区间进行赋值、计算最大值/最小值/均值
63 void test2() {
64     vector<int> v0(10);  
65     generate(v0.begin(), v0.end(), rand_int_100); 
66     cout << "v0: ";
67     output(v0);
68 
69     auto iter1 = min_element(v0.begin(), v0.end());
70     cout << "最小值: " << *iter1 << endl;
71 
72     auto iter2 = max_element(v0.begin(), v0.end());
73     cout << "最大值: " << *iter2 << endl;
74 
75     auto ans = minmax_element(v0.begin(), v0.end());
76     cout << "最小值: " << *(ans.first) << endl;
77     cout << "最大值: " << *(ans.second) << endl;
78     double avg1 = accumulate(v0.begin(), v0.end(), 0)/v0.size();
79     cout << "均值: " << fixed << setprecision(2) << avg1 << endl;
80 
81     cout << endl;
82 
83     vector<int> v1{v0};
84     cout << "v0: ";
85     output(v0);
86     sort(v1.begin(), v1.end());
87     double avg2 = accumulate(v1.begin()+1, v1.end()-1, 0)/(v1.size()-2);
88     cout << "去掉最大值、最小值之后,均值: " << avg2 << endl;
89 }

 

实验结果截图:

任务3

代码:

 1 #include <iostream>
 2 #include <string>
 3 #include <algorithm>
 4 
 5 bool is_palindrome(std::string s);
 6 
 7 int main() {
 8     using namespace std;
 9     string s;
10 
11     while(cin >> s)  // 多组输入,直到按下Ctrl+Z后结束测试
12         cout << boolalpha << is_palindrome(s) << endl;
13 }
14 
15 // 函数is_palindrom定义
16 // 待补足
17 // ×××
18 bool is_palindrome(std::string s){
19     std::string s1{s};
20     reverse(s1.begin(),s1.end());
21     if(s1==s){
22         return 1;
23     }
24     else{
25         return 0;
26     }
27 }

实验结果截图:

任务4

代码:

 1 #include <iostream>
 2 #include <string>
 3 #include <algorithm>
 4 #include <vector>
 5 
 6 std::string dec2n(int x, int n = 2);
 7 
 8 int main() {
 9     using namespace std;
10 
11     int x;
12     while (cin >> x) {
13         cout << "十进制: " << x << endl;
14         cout << "二进制: " << dec2n(x) << endl;
15         cout << "八进制: " << dec2n(x, 8) << endl;
16         cout << "十六进制: " << dec2n(x, 16) << endl << endl;
17     }
18 }
19 
20 // 函数dec2n定义
21 // 待补足
22 // ×××
23 std::string dec2n(int x, int n) {
24     std::string res="";
25     if (x == 0)
26         res += '0';
27     while (x) {
28         if (x % n < 10) {
29             res += x % n + '0';
30             x /= n;
31         }
32         else {
33             res += x % n - 10 + 'A';
34             x /= n;
35         }
36     }
37     reverse(res.begin(), res.end());
38     return res;
39 }

 

28         a/=n;

 

29     }
30     for(int i=res.size()-1;i>=0;--i){
31         printf("%d",res[i]);
32     }
33 }

 实验结果截图:

任务5

代码:

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<vector>
 4 #include<iomanip>
 5 
 6 using namespace std;
 7 template<class T>
 8 void output(const T& c);
 9 int main() {
10     cout << "    ";
11     for (int i = 97; i <= 122; ++i) {
12         cout << static_cast<char>(i)<<"  ";
13     }
14     cout << endl;
15     vector<char> v0{ 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
16     for (int i = 1; i < 27; ++i) {
17         vector<char> v1{ v0 };
18         rotate(v1.begin(), v1.begin() + i, v1.end());
19         cout << setw(2)<<i<<"  ";
20         output(v1);
21     }
22 }
23 template<class T>
24 void output(const T& c) {
25     for (auto &i : c) {
26         cout << i << "  ";
27     }
28     cout << endl;
29 }

实验结果截图:

任务6

代码:

#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
#include<numeric>
#include<iomanip>

using namespace std;


class Compute {
private:

    int rand_int_10();
public:
    int right= 0;
    void add();
    void subtract();
    void multiply();
    void except();
    void Generate_equation(Compute compute);
};

int main() {
    Compute compute;
    compute.Generate_equation(compute);
   
}
int Compute::rand_int_10() {
    return rand() % 11;
}

void Compute::add() {
    int a = Compute::rand_int_10(), b = Compute::rand_int_10();
    int ans = a + b, ans_;
    string question=to_string(a) + "+"+to_string(b) + "=";
    cout << question;
    cin >> ans_;
    if (ans_ == ans) {
        right+= 1;
    }
}

void Compute::subtract() {
    int a = Compute::rand_int_10(), b = Compute::rand_int_10();
    int ans = a -b, ans_;
    string question = to_string(a) + "-" + to_string(b) + "=";
    cout << question;
    cin >> ans_;
    if (ans_ == ans) {
        right += 1;
    }
}

void Compute::multiply() {
    int a = Compute::rand_int_10(), b = Compute::rand_int_10();
    int ans = a *b, ans_;
    string question = to_string(a) + "*" + to_string(b) + "=";
    cout << question;
    cin >> ans_;
    if (ans_ == ans) {
        right += 1;
    }
}

void Compute::except() {
    int a = Compute::rand_int_10(), b = Compute::rand_int_10();
    double ans = a /b, ans_;
    string question = to_string(a) + "/" + to_string(b) + "=";
    cout << question;
    cin >> ans_;
    if (ans_ == ans) {
        right += 1;
    }
}

void Compute::Generate_equation(Compute compute) {
    for (int i = 1; i <= 10; ++i) {
        int number = rand() % 4;
        switch (number) {
        case 0:compute.add(); break;
        case 1:compute.subtract(); break;
        case 2:compute.multiply(); break;
        case 3:compute.except(); break;
        }
    }
    cout << "正确率:" << fixed << setprecision(2) << double(compute.right * 100 / 10) << "%" << endl;
}

实验结果截图:

 

标签:初体验,cout,int,void,编程,C++,v0,v1,include
From: https://www.cnblogs.com/sjx-/p/18453580

相关文章

  • 第一篇博客(2024级新生的简单自我介绍及学习编程经历)
    亲爱的读者: 大家好!先来谈谈我写这篇博客的目的吧,写这篇博客的目的便是:1.做一个自我介绍。2.讲一讲我了解编程学习以及大学的经历。3.谈谈我对于我自己编程学习的看法。(学习目标,学习方法,花费时间)4.锻炼我的写作能力。(1)首先,本人网名为“尘饰”,来自于江西某个大学的2024级新......
  • Window系统编程 - 文件操作
    前言各位师傅大家好,我是qmx_07,今天主要介绍使用windows系统编程操作读写文件文件CreateFile()函数讲解介绍:该函数用于打开文件或者I/O流设备,文件、文件流、目录、物理磁盘、卷、控制台缓冲区、磁带驱动器、通信资源、mailslot和管道接下来我们学习一下CreateFile......
  • C#调用C++ dll教程
    C#调用C++dll教程文章目录一、创建C++dll项目二、C#程序员调用C++dll三、C++与C#数据类型对应基本数据类型对应表C++指针类型与C#类型在使用C#开发客户端时,有时需要调用C++dll,本篇博客来介绍C#程序如何调用C++dll。一、创建C++dll项目首先使用VS2022创建C++d......
  • 量化交易需要哪些编程技能,都有哪些优势?
    Python股票接口实现查询账户,提交订单,自动交易(1)Python股票程序交易接口查账,提交订单,自动交易(2)股票量化,Python炒股,CSDN交流社区>>>Python:量化交易的核心编程语言Python的基础优势Python在量化交易中犹如一把万能钥匙。它的简洁性使得即使是编程新手也能快速上手。对于......
  • 【C/C++内存管理】
    【知识预告】C/C++内存分布C语言中动态内存管理方式C++内存管理new和delete的实现原理常见面试题内存泄漏1C/C++内存分布intglobalVar=1;staticintstaticGlobalVar=1;voidTest(){ staticintstaticVar=1; intlocalVar=1; intnum1[10]={1,2,3,......
  • 实验1 现代C++编程初体验
    实验任务11//现代C++标准库、算法库体验2//本例用到以下内容:3//1.字符串string,动态数组容器类vector、迭代器4//2.算法库:反转元素次序、旋转元素5//3.函数模板、const引用作为形参67#include<iostream>8#include<string>9#inc......
  • [编程笔记] 未能加载文件或程序集“...”或它的某一个依赖项。试图加载格式不正确的程
    使用IIS部署站点,指向代码根目录,启动时报“未能加载文件或程序集“...”或它的某一个依赖项。试图加载格式不正确的程序。” 直接启动项目是可以的,解决上述错误很简单,看下项目属性: 这里是x86位数的,对应系统就是Windows32,一般我们工作用的电脑基本都......
  • Python快速编程小案例——打印蚂蚁森林植树证书
    提示:(个人学习),案例来自工业和信息化“十三五”人才培养规划教材,《Python快速编程入门》第2版,黑马程序员◎编著蚂蚁森林是支付宝客户端发起“碳账户”的一款公益活动:用户通过步行地铁出行、在线消费等行为,可在蚂蚁森林中获取能量,当能量到达一定数值后,用户可以在支付宝中申请......
  • 程序设计基础I-实验7 函数(编程题)
    7-1sdut-C语言实验—计算表达式计算下列表达式值:输入格式:输入x和n的值,其中x为非负实数,n为正整数。输出格式:输出f(x,n),保留2位小数。输入样例:32输出样例:在这里给出相应的输出。例如:2.00#include<stdio.h>#include<math.h>doublef(doublex,intn){......
  • c++map 查找元素和list查找元素速度对比
    在C++中,std::map和std::list是两种不同的容器类型,前者是基于红黑树实现的关联容器,后者是双向链表。如果你想比较这两种容器在查找元素上的速度,通常std::map会比std::list快得多。因为std::map的查找操作是平均常数时间复杂度,即O(logn),而std::list的查找操作是线性时间复杂度,即O(......