圆的面积

模拟 计算 圆的面积 并输出 思路 : s = pi * r*r; 定义 半径 定义 PI

package com.arthur.day2.yuan;

public class Area {

public static void main(String[] args) {

int r=7;

double PI=3.14;

double s;

s=PI*r*r;

System.out.printf("圆的面积为:%.2f",s);

}

}


扩展  demo1 的 半径 定死了  想让 用户 输入 半径    计算面积  需要使用 Scanner

package com.arthur.day2.yuan;

import java.util.Scanner;

public class Area1 {

public static void main(String[] args) {

double PI=3.14;

Scanner input =new Scanner(System.in);

System.out.print("请输入圆半径:");

double r=input.nextDouble();

double s;

s=PI*r*r;

System.out.printf("圆的面积为:%.2f",s);

}

}


你可能感兴趣的:(圆的面积)