题目内容

计价货币 汇票 银行承兑汇票 支付货币 佣金 银行汇票 本票 远期汇票 商业承兑汇票 即期汇票 跟单汇票 banker’s draft

查看答案
更多问题

When a ship (docks) its captain must (complete) a ship’s report for the Custom’s authorities. When it is (ready to leave), he (completes) a ship’s manifest giving details of the vessel. This allows the government to (discover) how much the country imports and exports. It also allows customs to (find) details of passengers and cargo (loaded) the vessel, so they can (estimate) what and who the ship is carrying. Once the captain has (given) these documents the ship can sail. fill out hand over look up find out come in due out make out work out take on

计价货币 汇票 银行承兑汇票 支付货币 佣金 银行汇票 本票 远期汇票 商业承兑汇票 即期汇票 跟单汇票 documentary bill

export restrict divide debit develop subsidize establish trade compete acknowledge measure prove import control describe offer locate produce arrange encourage exist order prevent sell lend ship invoice consign complete guarantee transact

使用VC++6.0打开下的源程序文件3.cpp。其中定义的类不完整,按要求完成下列操作,将类的定义补充完整。 (1)将文件以追加的方式打开。请在注释1后添加适当的语句。 (2)定义m、n为类TC的公有int型数据成员。请在注释2后添加适当的语句。 (3)定义p为类TC的数据成员指针,并指向类TC的数据成员m。请在注释3后添加适当的语句。 (4)定义p指向类TC的数据成员n。请在注释4后添加适当的语句。 注意:增加或者修改代码的位置已经用符号表示出来,请不要修改其他的程序代码。 试题程序: #include<iostream.h> #include<fstream> #include<iomanip> #include<cmath> using namespace std; void WriteFile(int x) { ofstream out1; //********1******** out1.open("3.txt",); out1<<x<<’’; out1.close(); } void ClearFile() { ofstream out1; out1.open("3.txt"); out1.close(); } class TC { public: void disp() { cout<<"m="<<m<<endl; WriteFile(m); cout<<"n="<<n<<endl; WriteFile(n); } //********2******** }; void main() { //********3******** ClearFile(); TC a; a.*p=30; //********4******** a.*p=45; a.disp(); }

答案查题题库