鱼C论坛

 找回密码
 立即注册
查看: 6170|回复: 3

[已解决]想请问后面的面积还有没有其他方法在上面写出来!感谢!

[复制链接]
发表于 2021-4-22 17:08:41 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 MIQIWEI 于 2021-4-22 17:19 编辑

编写一个程序,提示用户以浮点数的形式输入正方形的边的长度。程序然后打印一个正方形的面积。将结果打印到小数点后两位。注意:您可以假设用户输入的边长是有效的。

Test: QQ图片20210422210300.png

package lab1;

import java.util.Scanner;

public class demo2 {
        public static void main(String[] args) {
                Scanner input=new Scanner(System.in);
                System.out.println("Enter a side length:");
                double length=input.nextDouble();
                
                System.out.printf("Area of square with a side length of %.2f cm is .",length,length*length);
        }

}
最佳答案
2021-4-22 17:35:04
package com.lian.Test;

import java.text.DecimalFormat;
import java.util.Scanner;

/**
 * @author :LSS
 * @description: Calculate the area of the square given the variable length and save two decimal digits for the output
 * @date :2021/4/20 11:50
 */
public class TestD {
    public static void main(String[] args) {
        //使用模板函数DecimalFormat定义保留两位小数的模板
        DecimalFormat df = new DecimalFormat("######0.00");
        Scanner input = new Scanner(System.in);
        System.out.println("Enter a side length:");
        double length = input.nextDouble();
        //通过Math函数的pow平方方法计算出正方形的面积
        double area = Math.pow(length, 2);
        System.out.println("Area of square with a side length of " + df.format(length) + " cm is " + df.format(area) + " cm2");
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-4-22 17:26:11 | 显示全部楼层
本帖最后由 肖-肖 于 2021-4-22 17:42 编辑

我这个跟你那个差不多,就是设置小数点不太一样~~
我感觉你的最后输出应该是:
System.out.printf("Area of square with a side length of %.2f cm is %.2f",length,length*length);
已经试过了,可以的!
代码如下
/**
编写一个程序,提示用户以浮点数的形式输入正方形的边的长度。
程序然后打印一个正方形的面积。将结果打印到小数点后两位。注意:您可以假设用户输入的边长是有效的
 */

import java.util.Scanner;

public class demo2 {
        public static void main(String[] args) {
                //先定义一个面积的变量area double型的
                double area = 0.0;
                String area2;
        System.out.print("Enter a side length:");
                Scanner input=new Scanner(System.in);
        double length=input.nextDouble();
        //将面积给area
        area = length*length;
        //再将area保留2位小数点即可
        area2 =String.format("%.2f",area);
        
        System.out.printf("Area of square with a side length of %.2f cm is "+area2+".",length);
        }
}
运行结果如下:
lz6.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-4-22 17:35:04 | 显示全部楼层    本楼为最佳答案   
package com.lian.Test;

import java.text.DecimalFormat;
import java.util.Scanner;

/**
 * @author :LSS
 * @description: Calculate the area of the square given the variable length and save two decimal digits for the output
 * @date :2021/4/20 11:50
 */
public class TestD {
    public static void main(String[] args) {
        //使用模板函数DecimalFormat定义保留两位小数的模板
        DecimalFormat df = new DecimalFormat("######0.00");
        Scanner input = new Scanner(System.in);
        System.out.println("Enter a side length:");
        double length = input.nextDouble();
        //通过Math函数的pow平方方法计算出正方形的面积
        double area = Math.pow(length, 2);
        System.out.println("Area of square with a side length of " + df.format(length) + " cm is " + df.format(area) + " cm2");
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-4-22 22:28:21 | 显示全部楼层
肖-肖 发表于 2021-4-22 17:26
我这个跟你那个差不多,就是设置小数点不太一样~~
我感觉你的最后输出应该是:
已经试过了,可以的!

好滴~ 谢谢呢  我大概知道了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 23:34

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表