• 2021-04-14 问题

    (7-1)请阅读程序,并写出程序运行结果。 class X{ int getX() { return 5; } } class Y extends X{ int getX() { return 6; } } class T extends X{ int getX() { return 7; } } public class Demo10 { public static void main(String[] args) { X x=new X(); Y y=new Y(); X t=new T(); int sum=x.getX()+y.getX()+t.getX(); System.out.println(sum); } }

    (7-1)请阅读程序,并写出程序运行结果。 class X{ int getX() { return 5; } } class Y extends X{ int getX() { return 6; } } class T extends X{ int getX() { return 7; } } public class Demo10 { public static void main(String[] args) { X x=new X(); Y y=new Y(); X t=new T(); int sum=x.getX()+y.getX()+t.getX(); System.out.println(sum); } }

  • 2022-07-22 问题

    以下的类(接口)定义中正确的是( ) A: public class A{ private int x; public getX(){ return x; }} B: public abstract class A{ private int x; public abstract int getX(); public int aMethod(){ return 0; }} C: public class A{ private int x; public abstract int getX();} D: public interface interfaceA{ private int x; public int getX(){ return x; }}

    以下的类(接口)定义中正确的是( ) A: public class A{ private int x; public getX(){ return x; }} B: public abstract class A{ private int x; public abstract int getX(); public int aMethod(){ return 0; }} C: public class A{ private int x; public abstract int getX();} D: public interface interfaceA{ private int x; public int getX(){ return x; }}

  • 2021-04-14 问题

    在JSP中,给定以下JSP代码片段,运行结果是()。 <% int x=5; %> <%! int x=7; %> <%! int getX(){ return x; } %> <% out.print(“X1=”+x); %> <% out.print(“X2=”+getX()); %>

    在JSP中,给定以下JSP代码片段,运行结果是()。 <% int x=5; %> <%! int x=7; %> <%! int getX(){ return x; } %> <% out.print(“X1=”+x); %> <% out.print(“X2=”+getX()); %>

  • 2021-04-14 问题

    (7-1)以下程序运行结果是()。 class FatherX{ public Integer getX() { return new Integer(10); } } class Son extends FatherX{ public Double getX() { return new Double(20); } } public class Demo12 { public static void main(String[] args) { FatherX f=new FatherX(); Son s=new Son(); System.out.println(f.getX()+s.getX()); } }

    (7-1)以下程序运行结果是()。 class FatherX{ public Integer getX() { return new Integer(10); } } class Son extends FatherX{ public Double getX() { return new Double(20); } } public class Demo12 { public static void main(String[] args) { FatherX f=new FatherX(); Son s=new Son(); System.out.println(f.getX()+s.getX()); } }

  • 2021-04-14 问题

    (7-12)请阅读程序,写出程序运行结果。 class A{ static String name="tom"; static int getX() { return 2; } int getY() { return 3; } } class B extends A{ static String name="Tuny"; static int getX() { return 4; } int getY() { return 5; } } class C extends A{ static String name="Tuny"; static int getX() { return 4; } int getY() { return 5; } } interface D{ int getY(); } class E implements D{ public int getY() { return 6; } } public class Demo{ public static void main(String[] args) { A a=new A(); A b=new B(); A c=new C(); D d=new E(); int sum=a.name.length()+b.getX()+c.getY()+d.getY(); System.out.println(sum); } }

    (7-12)请阅读程序,写出程序运行结果。 class A{ static String name="tom"; static int getX() { return 2; } int getY() { return 3; } } class B extends A{ static String name="Tuny"; static int getX() { return 4; } int getY() { return 5; } } class C extends A{ static String name="Tuny"; static int getX() { return 4; } int getY() { return 5; } } interface D{ int getY(); } class E implements D{ public int getY() { return 6; } } public class Demo{ public static void main(String[] args) { A a=new A(); A b=new B(); A c=new C(); D d=new E(); int sum=a.name.length()+b.getX()+c.getY()+d.getY(); System.out.println(sum); } }

  • 2022-07-29 问题

    有如下程序: #include<iostream> using namespace std; class XX{ int x; public: XX(int XX=0):x(xx){} int getX(){return x;} }; class YY:public XX{ int y; public: YY(int xx,int yy):XX(xx),y(yy){} int getV(){return getX()+y;} }; int main(){ YY c(3,4); cout<<c.getV()+c.getX()<<endl; return 0; } 运行这个程序的输出结果是______。 A: 3 B: 4 C: 7 D: 10

    有如下程序: #include<iostream> using namespace std; class XX{ int x; public: XX(int XX=0):x(xx){} int getX(){return x;} }; class YY:public XX{ int y; public: YY(int xx,int yy):XX(xx),y(yy){} int getV(){return getX()+y;} }; int main(){ YY c(3,4); cout<<c.getV()+c.getX()<<endl; return 0; } 运行这个程序的输出结果是______。 A: 3 B: 4 C: 7 D: 10

  • 2021-04-14 问题

    求解常微分方程组<img src="http://img1.ph.126.net/B8qMozAYz7oEzmWV3LBSvg==/6597340246519736485.png" />, 应用的语句是? DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},{x,y},t]|DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},x[t],y[t],t]|DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},{x[t],y[t]},t]|DSolve[x'[t]+y[t]=Cos[t],y'[t]+x[t]=Sin[t],{x[t],y[t]},t]

    求解常微分方程组<img src="http://img1.ph.126.net/B8qMozAYz7oEzmWV3LBSvg==/6597340246519736485.png" />, 应用的语句是? DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},{x,y},t]|DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},x[t],y[t],t]|DSolve[{x'[t]+y[t]==Cos[t],y'[t]+x[t]==Sin[t]},{x[t],y[t]},t]|DSolve[x'[t]+y[t]=Cos[t],y'[t]+x[t]=Sin[t],{x[t],y[t]},t]

  • 2021-04-14 问题

    下述真值表表示的命题是。 Input Output p q r T T T T T T F F T F T T T F F T F T T T F T F T F F T T F F F T

    下述真值表表示的命题是。 Input Output p q r T T T T T T F F T F T T T F F T F T T T F T F T F F T T F F F T

  • 2022-07-26 问题

    图示系统的微分方程为( )[img=808x247]17de73b60010c18.png[/img] A: y''(t)+3y'(t)+2y(t)=4f'(t)+f(t) B: y''(t)+2y'(t)+3y(t)=4f'(t)+f(t) C: 4y'(t)+y(t)=f''(t)+3f'(t)+2f(t) D: y''(t)+3y'(t)+2y(t)=f'(t)+4f(t)

    图示系统的微分方程为( )[img=808x247]17de73b60010c18.png[/img] A: y''(t)+3y'(t)+2y(t)=4f'(t)+f(t) B: y''(t)+2y'(t)+3y(t)=4f'(t)+f(t) C: 4y'(t)+y(t)=f''(t)+3f'(t)+2f(t) D: y''(t)+3y'(t)+2y(t)=f'(t)+4f(t)

  • 2022-06-19 问题

    求微分方程[img=261x61]17da6536c0cca5d.png[/img]的通解; ( ) A: C18*cos(t) - C20*sin(t) - C19*t*cos(t) - C21*t*sin(t) B: C18*cos(t) + C20*sin(t) - C19*t*cos(t) - C21*t*sin(t) C: C18*cos(t) + C20*sin(t) + C19*t*cos(t) + C21*t*sin(t) D: -C18*cos(t) + C20*sin(t) + C19*t*cos(t) + C21*t*sin(t)

    求微分方程[img=261x61]17da6536c0cca5d.png[/img]的通解; ( ) A: C18*cos(t) - C20*sin(t) - C19*t*cos(t) - C21*t*sin(t) B: C18*cos(t) + C20*sin(t) - C19*t*cos(t) - C21*t*sin(t) C: C18*cos(t) + C20*sin(t) + C19*t*cos(t) + C21*t*sin(t) D: -C18*cos(t) + C20*sin(t) + C19*t*cos(t) + C21*t*sin(t)

  • 1 2 3 4 5 6 7 8 9 10