C++面向对象程序设计的课后实验的答案.doc

C++面向对象程序设计的课后实验的答案.doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C面向对象程序设计的课后实验的答案

实验八 实验名称: C++的输入和输出 成绩: 实验目的和要求 学习C++格式化的输入输出方法。 学习C重载运算符“”和“”的方法。 学习C磁盘文件的输入输出方法。 实验内容和步骤 1. 下面给出的程序test9_1_1.cpp用于打印九九乘法表,但程序中存在错误。请上机调试,使得此程序运行后,能够输出如下所示的九九乘法表。 * 1 2 3 4 5 6 7 8 9 1 1 2 2 4 3 3 6 9 4 4 8 12 16 5 5 10 15 20 25 6 6 12 18 24 30 36 7 7 14 21 28 35 42 49 8 8 16 24 32 40 48 56 64 9 9 18 27 36 45 54 63 72 81 //test9_1_1.cpp #includeiostream #includeiomanip using namespace std; int main() { int i,j; cout *; for(i=1;i=9;i++) couti ; coutendl; for(i=1;i=9;i++) { couti; for(j=1;j=i;j++) couti*j; } return 0; } 修改后的程序为: #includeiostream #includeiomanip using namespace std; int main() { int i,j; cout* ; for(i=1;i=9;i++) couti ; coutendl; for(i=1;i=9;i++) { couti ; for(j=1;j=i;j++) { couti*j ; } coutendl; } return 0; } 运行结果: 2.下面的程序用于统计文件xyz.txt中的字符个数,请填空完成程序。 //test9_2_1.cpp #includeiostream #includefstream using namespace std; int main() { char ch; int i=0; ifstream file; file.open(xyz.txt,ios::in); if(①!file) { coutxyz.txt cannot openendl; abort(); } while (!file.eof()) { ② file.get(ch); i++; } cout文件字符个数:iendl; ③file.close(); return 0; } 运行结果: 3.重载运算符“”和“”,使其能够输入一件商品的信息和输出这件商品的信息。商品的信息由编号、商品名和价格。 程序如下: #includeiostream #includestring using namespace std; class Merchandise{ public: Merchandise(int n=0,char na=a,double p=0.0) { no=n; name=na; price=p; } ~Merchandise(){} friend ostream operator(ostream out,Merchandise s) { outno:s.noendl; outname:s.nameendl; outprice:s.priceendl; return out; } friend istream operator(istream in,Merchandise s) { coutno:; ins.no; coutname:; ins.name; coutprice:; ins.price; return in; } private: int no; char name; double price; }; int main() { Merchandise mer; cout输入商品信息:endl; cinmer; cout输出商品信息:endl; coutmer; return 0; } 运行结果:

文档评论(0)

shenlan118 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档