凉心丫
凉心丫
全部文章
题解
ACM(2)
凉心教学C++(2)
未归档(4)
归档
标签
去牛客网
登录
/
注册
凉心
_
全部文章
/ 题解
(共33篇)
2022/5/27hgc_experience
来自专栏
#include<iostream> using namespace std; class Clock { public: Clock(int NewH, int NewM, int NewS); void ShowTime(); Clock&...
C++
2022-05-27
0
472
2022/5/27hgc_experience
来自专栏
return itsAge; return itsWeight; Number = 1; Number = 0; cout << "DerivedClass Destruction.Number=" << getNumber() <&...
C++14
C++
2022-05-27
1
365
2022/5/23 hgc_experience..2
来自专栏
#include<iostream> using namespace std; class Vehicle { public: int MaxSpeed; int Weight; void Run() { cout << "Vehicle...
C++
2022-05-23
0
302
2022/5/23 hgc_experience
来自专栏
#include <iostream> using namespace std; class Shape { public: Shape() {} ~Shape() {} virtual float GetArea() { return -1; }...
C++
2022-05-23
0
321
2022/5/13 hgc - > experience
来自专栏
private : char * name; char * address; char * city; char * youbian; public : Employee( char* n = "", char* add = "", char* ...
C++
2022-05-13
2
335
计算机类21-1.2班 实验4
来自专栏
#include <iostream> using namespace std; class Point { //Point类定义 public: //外部接口 Point(int x = 0, int y = 0) ...
C++
2022-05-02
0
437
黑工程实验2022/4/25
来自专栏
#include <iostream> using namespace std; class SimpleCircle { public: SimpleCircle(); SimpleCircle(int); SimpleCircle(const Sim...
C++
2022-04-25
1
315
黑工程实验2022/4/25
来自专栏
double average(const vector<double>& arr) { double sum = 0; for (int i = 0; i < arr.size(); i++) { sum += arr[i]; } ...
C++
2022-04-25
0
402
PTA L2-4 哲哲打游戏
来自专栏
#include <iostream> #include <cstring> #include <algorithm> #include <vector> using namespace std; const int N = 1e5 + 50; con...
C++
2022-04-21
1
376
PTA L1-7 矩阵列平移
来自专栏
#include<bits/stdc++.h> using namespace std; const int N = 110; int a[N][N]; int n, k, x; void solve() { int t = 0; /*for (int i = 1; i <= ...
C++
2022-04-21
0
696
首页
上一页
1
2
3
4
下一页
末页