Fed up of city life ,the young couple moved out to live in the suburbs a month ago.()此题为判断题(对,错)。

题目
Fed up of city life ,the young couple moved out to live in the suburbs a month ago.()

此题为判断题(对,错)。


相似考题

4.使用VC++6.0打开考生文件夹下的源程序文件3.cpp,其中定义了用于表示日期的类Date,但类Date的定义并不完整,按要求完成下列操作,将类的定义补充完整。 (1)定义私有成员变量year、month、day。分别表示年、月、日,类型为int。请在注释1后添加适当的语句。 (2)完成构造函数,分别给year、month、day赋值,请在注释2后添加适当的语句。 (3)完成重载符号“十=”的定义,请在注释3后添加适当的语句。 (4)完成print打印函数,输出到屏幕和文件的格式相同,请在注释4后添加适当的语句。 注意:仅在函数指定位置添加语句,请勿改动主函数main与其他函数中的任何内容。 程序正常运行,输出的结果为2008年11月813。 试题程序: include(iostream.h) include(fstream) include(iomanip) include<cmath) usingnamespacestd; voidWriteFile(intc) { ofstreamout1; out1.open("3.txt",ios_base::app); out1<<C<<; out1.close; } voidWriteFile(char*str) { ofstreamoutl; out1.open("3.txt",ios_base::app); out1<<str; out1.close; } voidClearFile { ofstreamout1; out1.open("3.txt"); out1.close; } classDate { public: Date(inty,intm,intd) { //********1******** } voidprint; //********2******** { month+=m; inti=month/12: intj=month%12; if(j==0) {year+=(i-1); month=12; } else { year+=i: month=j; } return*this; } private: //********3******** }; voidDate::print { //********4******** WriteFile(year): WriteFile("年"); WriteFile(month); WriteFile("月"); WriteFile(day); WriteFile("日"); } intmain { ClearFile; DateOly_day(2008,8,8); Olyday+=3: Oly_day.print; return0; }

更多“Fed up of city life ,the young couple moved out to live in the suburbs a month ago.() ”相关问题
  • 第1题:

    阅读以下说明和java代码,将应填入(n)处的字句写在对应栏内。

    [说明]

    本程序使用类来管理员工的通讯地址信息。已知程序的输出为:

    输出记录:5

    姓名:王丽华

    街道地址:中华路15号

    市:襄樊市

    省:湖北省

    邮政编码:430070

    [Java代码]

    public class Employee{

    protected String (1);

    protected String street;

    protected String city;

    protected String prov;

    protected String post;

    protected int no;

    public Empbyee(){}

    public Employee(String name,String street,String city,String prov,String post, (2) ){

    this.name=name;

    this.street=street;

    this.city=city;

    this.prov=prov;

    this.post=post;

    this.no=no;

    }

    public static void main(String[]args){

    Employee emp=new Employee(“王华”,“中华路15号”,“武汉市”,“湖北省”,“430070”,1);

    emp.changeName(“王丽华”);

    (3) (“襄樊市”);

    emp.changeNo(5);

    (4);

    }

    void changeName(String name){this.name=name;}

    void changeStreet(String street){this.street=street;}

    void changeCity(String city){this.city=city;}

    void changeProv(String prov){this.prov=prov;}

    void changeNo(int no){(5);}

    void display(){

    System.out.println(“输出记录:”+this.no);

    System.out.Println(“姓名:”+this.name);

    System.out.println(“街道地址:”+this.street);

    System.out.println(“市:”+this.city);

    System.out.println(“省:”+this.prov);

    System.out.println(“邮政编码:”+this.post);

    }

    }


    正确答案:(1) name (2) int no (3) emp.changeCity (4) emp.display() (5)this.no=no
    (1) name (2) int no (3) emp.changeCity (4) emp.display() (5)this.no=no 解析:本程序创建一个employee类,包括姓名、街道地址、市、省、邮政编码和记录号等信息以及若干函数:构造函数employee()初始化每个成员;changname()、……changeno()等用于更改类中各属性的值;display()函数用于打印数据。

  • 第2题:

    在下面附属类方法中的下划线处应填入的正确参数是public void writeData( )throws IOException{ GregorianCalendar calendar=new GregorianCalendar(); calendar,setTime(hireDay); out.println(name+"|" +salary+"|" +calendar.get(Calendar.YEAR)+"|" +(calendar.get(Calendar.MONTH)+1)+"|" +calendar.get(Calendar.DAY_OF_MONTH)):}

    A.Employee[]e

    B.employee.dat

    C.PrintWriter out

    D.BufferedWriter


    正确答案:C
    解析:本题考查考生对附属类的掌握。题目看起来很难,其实不用去理解程序即可回答,按照Java中的语法规则,只有选项C满足题目。在题目中出现了“out”变量,只有选项C中“PrintWriter out”有该变量。选项A只是用来定义一个数组,选项B是一个常量,不能用在这里,选项D中“BufferedWriter”后缺少参数。这个题目考点有些含栅,容易让考生莫名其妙,如果将程序整个给出也许更好一些,了解即可,本题的关键是明白附属类的概念。

  • 第3题:

    名词life的复数形式lives (n.)和动词live的单数形式lives (v.),尾部-s的发音不相同。


    lives

  • 第4题:

    这个c++程序中char city[20]; 的作用是什么 ?

    #include <fstream>

    #include <iostream>

    using namespace std;

    int main()

    {

        fstream inout;

    inout.open("city.txt",ios::out);

    inout<<"Dallas"<<" "<<"tonghua"<<" "<<"长春"<<" " ;

    inout.close();

    inout.open("city.txt",ios::app | ios::out);

    inout<<"罗马"<<" "<<"巴黎"<<" ";

    inout.close();

    char city[20];

    inout.open("city.txt",ios::in);

    while(!inout.eof())

    {inout>>city;

    cout<<city<<" ";

                     } 

                     inout.close();

                     

        system("PAUSE");

        return 0;

    }


     

    定义一个字符型数组city[20],将从文本文件“city.txt”所读取的数据,暂时存在city[20]中,然后通过输出函数cout将数据输出。

     

  • 第5题:

    半速率小区中,某个呼叫“优选半速率信道”,则下列信道的分配顺序错误的有()

    A.全速率—Couple半速率—Single半速率

    B.全速率—Single半速率—Couple半速率

    C.Couple半速率—Single半速率—全速率

    D.Couple半速率—全速率—Single半速率

    E.Single半速率—全速率—Couple半速率


    参考答案:A, B, C, D, E

  • 第6题:

    以下关于VDB函数的语法正确的是()。

    A.VDB(cost,salvage,life,period,factor)

    B.VDB(cost,salvage,life,period,month)

    C.VDB(cost,salvage,life,per)

    D.VDB(cost,salvage,life,start-period,end-period,factor,no-switch)


    VDB(cost,salvage,life,start-period,end-period,factor,no-switch)