当前位置: 技术问答>java相关
如何做加法
来源: 互联网 发布时间:2015-01-06
本文导语: public class UsesConstants { public static void main(String[] args) { final double CM_PER_INCH=2.54; double paperWidth=8.5; double paperHeight=11; System.out.println("Paper size in centimeter: " + paperWidth * CM_PER_INCH + "by" + paperHeight * CM_PER...
public class UsesConstants
{
public static void main(String[] args)
{
final double CM_PER_INCH=2.54;
double paperWidth=8.5;
double paperHeight=11;
System.out.println("Paper size in centimeter: " + paperWidth * CM_PER_INCH + "by" + paperHeight * CM_PER_INCH );
}
}
运行结果:Paper size in centimeter: 21.59 by 27.94
若改为:System.out.println("Paper size in centimeter: " + paperWidth * CM_PER_INCH + paperHeight * CM_PER_INCH );
即去掉"by" + 但结果却为:21.5927.94 如何可以让它们变成两值相加?
{
public static void main(String[] args)
{
final double CM_PER_INCH=2.54;
double paperWidth=8.5;
double paperHeight=11;
System.out.println("Paper size in centimeter: " + paperWidth * CM_PER_INCH + "by" + paperHeight * CM_PER_INCH );
}
}
运行结果:Paper size in centimeter: 21.59 by 27.94
若改为:System.out.println("Paper size in centimeter: " + paperWidth * CM_PER_INCH + paperHeight * CM_PER_INCH );
即去掉"by" + 但结果却为:21.5927.94 如何可以让它们变成两值相加?
|
anything + 字符串 = 字符串,所以加个括号让加法先做:
System.out.println("Paper size in centimeter: " + (paperWidth * CM_PER_INCH + paperHeight * CM_PER_INCH ));
不会连运算优先级都不知道吧。
System.out.println("Paper size in centimeter: " + (paperWidth * CM_PER_INCH + paperHeight * CM_PER_INCH ));
不会连运算优先级都不知道吧。
|
public class UsesConstants
{
public static void main(String[] args)
{
final double CM_PER_INCH=2.54;
double paperWidth=8.5;
double paperHeight=11;
double temp;
temp=paperWidth * CM_PER_INCH + paperHeight * CM_PER_INCH;
System.out.println("Paper size in centimeter: " +temp);
}
}
{
public static void main(String[] args)
{
final double CM_PER_INCH=2.54;
double paperWidth=8.5;
double paperHeight=11;
double temp;
temp=paperWidth * CM_PER_INCH + paperHeight * CM_PER_INCH;
System.out.println("Paper size in centimeter: " +temp);
}
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。