include<iostream>
#include<string>
using namespace std;
class Book {
char*title;
char*author;
int numsold;
public:
Book(){}
Book(const char*strl,const char*str2,const int num) {
int len=strlen(strl);

欢迎免费使用小程序搜题/刷题/查看解析,提升学历,成考自考报名,论文代写、论文查重请加客服微信skr-web

include<iostream>
#include<string>
using namespace std;
class Book {
char*title;
char*author;
int numsold;
public:
Book(){}
Book(const char*strl,const char*str2,const int num) {
int len=strlen(strl);
title=new char[1en+1];
strcpy(title,strl);
len=strlen(str2);
author=new char[1en+1];
strcpy(author,str2);
numsold=num; }
void sethook(const char * strl,const char * str2,const int num) {
int len=strlen(strl);
title=new char[1en+1];
strcpy(title,strl);
len=strlen(str2);
author=new char[1en+1];
strcpy(author,str2);
numsold=num;
}
~Book() {
delete title;
delete author;
}
void print(ostream& output) {
output<<"书名:"<<title<<endl;
output<<"作者:"<<author<<endl;
output<<"月销售量:"<<numsold<<endl;
}
};
void main() {
Book obj1("数据结构","严蔚敏",200),obj2;
obj1.print(cout);
obj2.setbook("C++语言程序设计","李春葆",210);
obj2.print(cout);
}

书名:数据结构
作者:严蔚敏
月销售量:200
书名:C++语言程序设计
作者:李春葆
月销售量:210

访客
邮箱
网址

通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作


  • 自动写文案
  • 自动写小说
  • 马上扫码让Ai帮你完成工作
通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作

  • 自动写论文
  • 自动写软件
  • 我不是人,但是我比人更聪明,我是强大的Ai
Top