牛客263号
牛客263号
全部文章
分类
题解(44)
归档
标签
去牛客网
登录
/
注册
牛客263号的博客
全部文章
(共65篇)
题解 | #迭代器遍历容器#
#include <iostream> // write your code here...... #include <vector> using namespace std; int main() { // write your code here...... ...
2022-07-08
0
258
题解 | #朋友们的喜好#
name = ['Niumei', 'YOLO', 'Niu Ke Le', 'Mona'] friend = [] friend.append(name) friend.append(['pizza', 'fi...
2022-07-07
0
206
题解 | #数到20#
for i in range(1,20+1): # +1是因为range不包含最后一个数字 print(i) # 打印数字
2022-07-07
2
227
题解 | #多态实现求面积体积#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: rectangle(int x,int y){...
2022-07-06
0
239
题解 | #多态实现计算器功能#
#include <iostream> using namespace std; class BaseCalculator { public: int m_A; int m_B; // write your code here.....
C++
2022-07-06
0
221
题解 | #求长方体表面积#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: rectangle(int x,int y){...
C++
2022-07-05
0
248
题解 | #构建长方体类#
#include using namespace std; class rectangle{ private: int length,width; public: rectangle(int x,int y){ length=x...
2022-07-05
0
273
题解 | #重写子类计算逻辑#
#include <iostream> using namespace std; class Base { private: int x; int y; public: Base(int x, int y) { this->x = x;...
2022-07-04
0
296
题解 | #重载小于号#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() ...
2022-07-04
0
322
题解 | #递归画图#
def xc(n, x, y): if n < 9 and n > 0: if n == 7: print(x*" "+n*"#"+y*" ") else: ...
2022-06-30
2
233
首页
上一页
1
2
3
4
5
6
7
下一页
末页