import java.util.Scanner;
网站制作、建网站找专业网站建设公司成都创新互联:定制网站、模板网站、仿站、成都小程序开发、软件开发、成都App制作等。做网站价格咨询成都创新互联:服务完善、十多年建站、值得信赖!网站制作电话:18980820575
public class Demo
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
Point p1,p2;
System.out.println("请输入第1个点的x、y坐标:");
p1=new Point(sc.nextDouble(),sc.nextDouble());
System.out.println("请输入第2个点的x、y坐标:");
p2=new Point(sc.nextDouble(),sc.nextDouble());
System.out.println("点"+p1+"与点"+p2+"的距离是"+p1.distance(p2));
}
}
class Point
{
Point(double x,double y)
{
this.x=x;
this.y=y;
}
public String toString()
{
return "("+x+","+y+")";
}
double distance(Point p)
{
return Math.sqrt(Math.pow(this.x-p.x,2)+Math.pow(this.y-p.y,2));
}
private double x,y;
}
可以在按钮之间的地方,添加一个空的JPanel,这样可以将两个按钮撑开,当然不同布局方法有些还不一样。
1、用边界布局的话,可以将两个按钮分别放在EAST和WEST,然后JPanel放在CENTER;
2、如果是流布局的话,在add两个按钮之间,add一个JPanel。
3、如果是网格布局,可以直接在按钮之间,添加一列存放JPanel。
java调整字符间距Font f =new Font("宋体",Font.BOLD,20);
如果是css就用下面的代码
html
head
style type="text/css"
p.spread {word-spacing: 30px;}
p.tight {word-spacing: -0.5em;}
/style
/head
body
p class="spread"This is some text. This is some text./p
p class="tight"This is some text. This is some text./p
/body
/html