日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

求正多边形的面积JAVA_第六章第三十六题(几何:正多边形的面积)(Geometry: area of a regular polygon)...

發布時間:2025/3/19 编程问答 49 豆豆
生活随笔 收集整理的這篇文章主要介紹了 求正多边形的面积JAVA_第六章第三十六题(几何:正多边形的面积)(Geometry: area of a regular polygon)... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

*6.36(幾何:正多邊形的面積)正多邊形是一個n條邊的多邊形,它的每條邊的長度都相等,而且所有角的角度也相等(即多邊形既是等邊又等角的)。計算正多邊形面積的公式是:

使用下面的方法頭編寫方法,返回正多邊形的面積:

public static double area(int n, double side)

編寫一個main方法,提示用戶輸入邊的個數以及正多邊形的邊長,然后顯示它的面積。

下面是一個運行示例:

Enter the number of sides: 5

Enter the side:6.5

The area of the polygon?is 72.690170

*6.36(Geometry: area of a regular polygon) A regular polygon is an n-sided polygon in which all sides are of the same length and all angles have the same degree (i.e., the polygon is both equilateral and equiangular). The formula for computing the area of a regular polygon is

Write a method that returns the area of a regular polygon using the following header:

public static double area(int n, double side)

Write a main method that prompts the user to enter the number of sides and the side of a regular polygon and displays its area.

Here is a sample run:

Enter the number of sides: 5

Enter the side:6.5

The area of the polygon?is 72.690170

下面是參考答案代碼:

// https://cn.fankuiba.com

import java.util.Scanner;

public class Ans6_36_page205 {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

System.out.print("Enter the side: ");

double side = input.nextDouble();

System.out.print("Enter the number of sides: ");

int n = input.nextInt();

System.out.println("The area of the pentagon is "+area(n,side));

}

public static double area(int n, double side) {

return (n * side * side) / (4 * Math.tan(Math.PI / 5));

}

}

適用Java語言程序設計與數據結構(基礎篇)(原書第11版)Java語言程序設計(基礎篇)(原書第10/11版)更多

總結

以上是生活随笔為你收集整理的求正多边形的面积JAVA_第六章第三十六题(几何:正多边形的面积)(Geometry: area of a regular polygon)...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。