填空题

下面程序的执行结果是 【15】 。
#include <iostream>
#include <iomanip>
using namespace std;
void main()
cout<<setfill(’x’)<<setw(10);
cout<<"Hello"<<end1;

【参考答案】

xxxxx Hello
<上一题 目录 下一题>
热门 试题

填空题
在下面程序的横线处填上适当的内容,使程序执行后的输出结果为ABCD。 #include <iostream> using namespace std; class A public: A() cout<<’A’; ; class B: 【11】 public:B() cout<<’B’; ; class C: 【12】 public: C()cout<<’C’; ; class D:public B,public C public:D() cout<<’D’; ; void main() D obj;
填空题
在下向程序和横线处填上适当的内容,使程序执行后的输出结果为1 2005。 #include <iostream> using namespace std; class Date public: Date(int m=1,int y=0):month(m),year(y) void Print() cout<<month<< <<year<<end 1; 【9】 operator+(eonst Date& d1, const Date& d2); private: int month,year; ; 【10】 operator+(const Date& d1, const Date& d2) int year,month; year=d1 .year+d2.year; month=d1. month+d2.month; year+=(month-1 ) 12; month=(month-1 )% 12+1; return Date(month,year); void main() Date d1 (3,2004),d2,d3(10); d2=d3+d1; d2,Print();
相关试题
  • 在下面函数的横线处填上适当的内容使该函数...
  • 以下函数模板max 的功能是返回数组a中最大...
  • Staff类含有血型数据成员ID,两个Staff 对...