0
Fill in the blanks. A { private int x; public A( val) { x = val; } }
Fill in the blanks. A { private int x; public A( val) { x = val; } }
5 Respuestas
+ 5
It should be something like this:
class A{
private int x;
public A(int val){
x = val;
}
}
If you complete the course first, it'll be easier for you.
+ 1
help me out
0
It should be something like this:
class A{
private int x;
public A(int val){
x = val;
}
}
0
Fill in the blanks to create a read-only property X. The return value of the accessor should be the square of x.
class A {
private int x=8;
public int X {
get
{ return x
x; }
}
Please help me to find out what the value fill in blank space.
0
Fill in the blanks to create a read-only property X. The return value of the accessor should be the square of x.
class A {
private int x=8;
public int X {
get
{ return x * x; }
}