当前位置:编程学习 > JAVA >>

得不到想要的运行结、麻烦问下该段程序应该输出什么

public class point
{

int x;
int y;
point(int a,int b)
{
x=a;
y=b;
}

void output()
{
  System.out.println(x);
   System.out.println(y);

}

public static void main (String args[])
{
point pt;
pt=new point(3,3);
//pt.x=10;
//pt.y=10;
pt.output();
}

} --------------------编程问答-------------------- 3
3
、你想要什么样的结果 --------------------编程问答-------------------- 3
3 --------------------编程问答-------------------- 谢谢您、当时弄错啦 --------------------编程问答-------------------- 3
3
补充:Java ,  Eclipse
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,