外来原始凭证
参考答案:
在同外单位发生经济往来关系时,从外单位取得的凭证。
某机关精简机构后有工作人员167人,比原来工作人员少68人.精简了百分之几?
以下程序运行后的输出结果是 【14】 。 #include <iostream> #include <string> using namespace std; class Y; class X int x;char *strx; public:X(int a, char *str) x=a; strx=new char[strlen(str)+l]; strcpy(strx,str);void show(Y &ob) ; ; class Y private:int y;char *stry; public:Y(int b,char *str) y=b; stry=new char[strlen(str)+l]; strcpy(stry, str);friend void X::show(Y &ob) ; ; void X::show(Y &ob) cout<<strx<<",";cout<<ob.stry<<end1; int main() X a(10,"stringX");Y b(20,"stringY");a. show (B) ;return 0;