题目信息

题目类型
练习
题目年份
2024
题目题型
问答题
关 键 词
程序

题目题干

写出下列程序的运行结果。
  1. # include <iostream> 
  2. using namespace std; 
  3. class Strucf 
  4. private
  5. float a,b,max; 
  6. public
  7. Strucf(int x,int y) 
  8. { a=++x; 
  9. b=y++; 
  10. if (a>b) max=a; 
  11. else max=b; 
  12. cout<<"Call Strucf(int ,int)"<<endl; 
  13. Strucf(float x) 
  14. { a=x; 
  15. b=10; 
  16. if (a>b) max=a; 
  17. else max=b; 
  18. cout<<"Call Strucf(float)"<<endl; 
  19. Strucf() 
  20. { max=a=b=0;} 
  21. void Print() 
  22. { cout<<"a="<<a<<'\t'<<"b="<<b<<endl; 
  23. cout<<"max="<<max<<endl; 
  24. ~Strucf() 
  25. { cout<<"Call ~Strucf()"<<endl;} 
  26. }; 
  27. int main (void
  28. { Strucf s1(2,3),s2(2.75),s3; 
  29. s1.Print(); 
  30. s2.Print(); 
  31. s3.Print(); 
  32. return 0; 

答案解析

相关题目

提示声明

  • 免责声明:本站资源均来自网络或者用户投稿,仅供用于学习和交流:如有侵权联系删除!
  • 温馨提示:本文属于积分文章,需要充值获得积分或升级VIP会员,也可在会员中心投稿获取。

猜你喜欢