更多"请将程序补充完整。 importjava.awt.*; publi"的相关试题:
[填空题]请将程序补充完整。
importjava.awt.*;
publicclassFirstFrameextendsFrame
publicstaticvoidmain(Stringargs[])
FirstFramefr=newFirstFrame("Firstcontainer!");
fi.setSize(240,240);
fi.setBackground(Color.yellow);
publicFirstFrame(StringStr)
super(Str);
[填空题]下列程序的功能是将数组中的奇数相加。给定的程序不完整,请将程序补充完整。
Option Base 1
Private Sub form_Click( )
Dim k As Integer
Dim Total As Integer
Dim n
n = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
For k = 1 To UBound(n)
If 【13】 Then
Total = Total + n(k)
End If
Next k
Print Total
End Sub
[填空题]下列程序的功能是将数组中的奇数相加。给定的程序不完整,请将程序补充完整。
Option Base 1
Private Sub form_Click( )
Dim k As Integer
Dim Total As Integer
Dim n
n = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
For k = 1 To UBound(n)
If 【13】 Then
Total = Total + n(k)
End If
Next k
Print Total
End Sub
[填空题]请将程序补充完整。
importjava.awt.*;
publicclassFirstFrameextendsFrame{
publicstaticvoidmain(Stringargs[]){
FirstFramefr=newFirstFrame("Firstcontainer!");
fi.setSize(240,240);
fi.setBackground(Color.yellow);
}
publicFirstFrame(StringStr){
super(Str);
}
}
[填空题]下列程序的输出结果为
Objectid=O
Obiectid=1
请将程序补充完整。
#include<iostream>
using namespace std;
class Point
{
public:
Point(int xx=0,int yy=0){X=xx;Y=yy;countP++;}
~Point( ){countP--;}
int GetX( ){return X;}
int GetY( ){return Y;}
static void GetC( ){cout<<"Object id="<<countP<<end1;}
private:
int X,Y;
static int countP;
};
______//静态数据成员的初始化
int main( )
{
Point::GetC( );
Point A(4,5);
A.GetC( );
return 0;
}
[填空题]下列程序的输出结果为2,请将程序补充完整。
using namespace std;
class Base
public:
【12】 void fun( ) cout<<1;
;
class Derived:public Base
public:
void fun( ) cout<<2;
int main( )
Base*p=new Derived;
p->fun( );
delete p;
return 0’;
[填空题]请将程序补充完整。
import java.awt.*;
public class FirstFrame extends Frame
public static void main(String args[])
FirstFrame fr = new FirstFrame("First container!");
fr. setSize(240,240);
fr. setB ackground(Color, yellow);
【15】
public FirstFrame(String str)
super(str);
[填空题]请将程序补充完整。
import java.awt.*;
public class FirstFrame extends Frame {
public static void main(String args[]){
FirstFrame fr=new FirstFrame("First container!");
fr.setSize(240,240);
fr. setBackground(Color.yellow);
【15】
}
public FirstFrame(String str){
super(str);
}
}
[填空题]请将程序补充完整。
import java.awt.*;
public class FirstFrame extends Frame
public static void main(String args[])
FirstFrame fr=new FirstFrame("First container!");
fr.setSize(240,240);
fr.setBackground(Color.yellow);
public FirstFrame(String str)
super(str);
[填空题]下列程序的输出结果为2,请将程序补充完整。
using namespace std;
class Base
public:
【12】 void fun( ) {cout<<1;}
};
class Derived:public Base
{
public:
void fun( ) {cout<<2;}
int main( )
{
Base*p=new Derived;
p->fun( );
delete p;
return 0’;
}
[填空题]下列程序的输出结果为2,请将程序补充完整。
#include <iostream>
using namespace std;
class Base
public:
______void fun( ) cout<<1;
;
class Derived:public Base
public:
void fun( )cout<<2;
;
int main( )
Base*p=new Derived;
p->fun( );
delete p;
return 0;
[填空题]下列程序的输出结果为2,请将程序补充完整。
#include <iostream>
using namespace std;
class Base
{
public:
【12】 void fun( ) {cout<<1;}
};
class Derived: public Base
{
public:
void fun( ) {cout<<2; }
};
int main( )
{
Base *p=new Derived;
p->fun( );
delete p;
return 0;
}
[填空题]下列程序的输出结果为
Objectid=O
Obiectid=1
请将程序补充完整。
#include<iostream>
using namespace std;
class Point
public:
Point(int xx=0,int yy=0)X=xx;Y=yy;countP++;
~Point( )countP--;
int GetX( )return X;
int GetY( )return Y;
static void GetC( )cout<<"Object id="<<countP<<end1;
private:
int X,Y;
static int countP;
;
______//静态数据成员的初始化
int main( )
Point::GetC( );
Point A(4,5);
A.GetC( );
return 0;