- 博客(5)
- 收藏
- 关注
原创 上机第三题
class Point { double m_x = 0, m_y = 0;public: Point(double x=0, double y=0) : m_x(x), m_y(y) { cout << "Constructor of Point" << endl; } Point(const Point &p) :m_x(p.m_x), m_y(p.m_y) { cout << "Copy constructor of Point" <&l
2020-12-25 13:18:32 97 1
原创 上机第二题
题目 2、数组与函数的综合应用已知:int a[5] = { 19,67,24,11,17 }, b[5] = { 2,3,9,17,59 };编写程序查找数组中是否存在某个指定元素;将数组a和数组b中的素数不重不漏地合并到一个vector容器c中,然后按照下标访问的方式手动对容器c中的数据,按从小到大顺序重新排序。要求依次实现:编写顺序查找法函数和折半查找法函数,分别在数组a和数组b中查找元素17所在的下标并输出。编写判断素数函数和排序函数,并对容器c中的结果进行输出。clude<
2020-12-25 13:07:23 69
原创 上机第一题
#include<iostream>using namespace std;class Fraction {private: int m_numerator = 0; int m_denominator = 1; int gcd(int x, int y);public: int getnumerator()const { ret
2020-12-25 12:59:03 81
原创 2020-12-11
第三次上机1.#include#includeusing namespace std;int main() {int a[100][100],i,j,max;cout << “矩阵的行” << " " << “矩阵的列” << endl;int n, m;cin >> n >> m;for ( i = 0;i < n; i++) {for ( j = 0; j <m; x++) {cin <&
2020-12-11 21:52:59 103
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人