Chinaunix首页 | 论坛 | 博客
  • 博客访问: 31538
  • 博文数量: 35
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 360
  • 用 户 组: 普通用户
  • 注册时间: 2021-09-17 18:39
文章分类

全部博文(35)

文章存档

2021年(35)

我的朋友

发布时间:2021-09-28 12:20:51

......【阅读全文】

阅读(426) | 评论(0) | 转发(0)

发布时间:2021-09-27 19:08:11

#include <iostream>#include <stdio.h>using namespace std;class A {public:    A() = default;    A(int);    int getAprivatedData() const;private:    int privatedAData;};A::A(int a) :    privatedAData(a) {      }i.........【阅读全文】

阅读(596) | 评论(0) | 转发(0)

发布时间:2021-09-26 16:30:16

......【阅读全文】

阅读(692) | 评论(0) | 转发(0)

发布时间:2021-09-26 11:27:29

#include <string>#include <iostream>using namespace std;int main(){    string str1;    string str2;    int N;    cin>>N;    cin.ignore(80,'\n');    while(N--)    {     getline(cin, str1,'#');  .........【阅读全文】

阅读(642) | 评论(0) | 转发(0)

发布时间:2021-09-24 18:27:39

#include<iostream>using namespace std;const int maxsize =20;class sqlist{    private:        int date[maxsize]; // 存放顺序表中的元素        int length; // 存放顺序表的长度    public:        sqlist(){length=0;}.........【阅读全文】

阅读(601) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册