#includeusingnamespacestd;floatarea(floata,floatn){ "/> #includeusingnamespacestd;floatarea(floata,floatn){ ">
HomeBackend DevelopmentC++What is the area of ​​the square formed by repeatedly connecting midpoints in a C program?

Suppose we have a square with side length "a". We will make more squares by repeatedly connecting the midpoints of the squares. The number of repetitions is n times. We have to find the area of ​​the nth square.

What is the area of ​​the square formed by repeatedly connecting midpoints in a C program?

Since the side length of the outer square is "a", the area is

What is the area of ​​the square formed by repeatedly connecting midpoints in a C program?

Now use Pythagoras According to Sri Lanka's theorem, we can get that the area of ​​the second rectangle is -

Similarly, the area of ​​the third rd square is -

Using this we can know that the area of ​​the nth square is-

What is the area of ​​the square formed by repeatedly connecting midpoints in a C program?

Example

#include <iostream>
#include <cmath>
using namespace std;
float area(float a, float n) {
   if (a < 0 ) //if the value is negative it is invalid
      return -1;
   float area = (a*a) / pow(2, n-1);
   return area;
}
int main() {
   float a = 20.0, n = 10.0;
   cout << "Area : " << area(a, n);
}

Output

Area : 0.78125

The above is the detailed content of What is the area of ​​the square formed by repeatedly connecting midpoints in a C program?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
内切于菱形的圆的面积是多少?内切于菱形的圆的面积是多少?Sep 05, 2023 am 08:25 AM

菱形内切圆与其四个边和四个端点相切。菱形的边与圆相切。这里,r是使用a和给定值的对角线找到的半径。现在是面积三角形AOB=½*OA*OB=½*AB*r(均使用公式½*b*h)。½*a/2*b/2=½*(√(a2/4+b2/4))*ra*b/8=√(a2+b2)*r/4r=a*b/2√(a2+b2)圆面积=π*r*r=π*(a2*b2)/4(a2support>+b2)示例菱形5和10的对角线。面积为15.700000示例代码 实时演示#include<stdio.h>intma

cad面积怎么标注cad面积怎么标注Mar 14, 2023 am 11:30 AM

cad面积标注的方法:1、打开cad,点击“绘图”,绘制图形;2、输入“AREA”命令回车;3、选中区域;4、按空格键,显示该区域的面积;5、输入命令“T”,然后在该区域内输入面积的大小即可。

在一个内接于半圆的矩形中的圆的面积是多少?在一个内接于半圆的矩形中的圆的面积是多少?Sep 13, 2023 am 08:45 AM

一个内切于矩形的圆与矩形的较长边相切,即长度与圆相切。一个内切于半圆的矩形在半圆的弧上接触两点。矩形的宽度等于圆的直径。如果R是半圆的半径。矩形的长度=&radic;2R/2矩形的宽度=R/&radic;2内切圆的半径为r=b/2=R/2&radic;2使用这个公式我们可以计算出内切于内切于半圆的矩形的圆的面积,面积=(&pi;*r2)=&pi;*R/8例子&nbsp;演示#include<stdio.h>intmain(){&

圆扇形的面积是多少?圆扇形的面积是多少?Aug 30, 2023 am 08:33 AM

圆扇形,也称为圆扇区/圆的扇区,是由两个半径之间的弧线所围成的圆的一部分。这个区域被两个半径和一个弧线所包围。为了找到内切的面积,我们需要找到两个半径之间的角度。总面积等于360度的角度。为了找到一个角度的面积,我们将面积乘以θ/360。这给出了内切部分的面积。其中θ是两个半径之间的角度(以度为单位)。圆扇形的面积=π*r*r*(θ/360)。示例半径为5,角度为60度的圆扇形的面积为13.083。面积=(3.14*5*5)*(60/360)=13.03示例代码&nbsp;演示#incl

CAD看图王怎么测量图形的面积 CAD看图王测量图形面积的步骤CAD看图王怎么测量图形的面积 CAD看图王测量图形面积的步骤Mar 13, 2024 pm 01:43 PM

  CAD看图王怎么测量图形的面积?CAD看图王是一款非常好用的可以看工程图纸的软件,这个软件功能非常多,各种格式的图纸都可以打开来看。如果我们在看图纸的时候,发现有有些图形的面积测量错误或者有些图形忘记测量面积,我们就可以用这个软件来测量图形的面积。那么该如何对图形的面积进行测量呢,下面本站小编整理了一个CAD看图王测量图形面积的步骤供大家参考。CAD看图王测量图形面积的步骤  1、首先CAD看图王APP中打开图纸文件,以带有圆弧图形的图纸为例,测量该图形面积。  2、打开图纸后在软件界面下方

在C程序中,将以下内容翻译为中文:正方形内接于一个内切于等边三角形的圆的面积?在C程序中,将以下内容翻译为中文:正方形内接于一个内切于等边三角形的圆的面积?Aug 31, 2023 pm 12:25 PM

在这里,我们将看到一个正方形的面积内接于一个圆,并且该圆内接于一个等边三角形。正方形的边是“a”。圆的半径为“r”,六边形的边为“A”。图表如下所示。所以正方形的对角线是-所以正方形的面积是-示例#include<iostream>#include<cmath>usingnamespacestd;floatarea(floatA){//Aisthesideofthetriangle&nbsp;&nbsp;if(A<0)//ifthevalueisne

在C程序中,圆内接于菱形的面积是多少?在C程序中,圆内接于菱形的面积是多少?Sep 01, 2023 pm 09:29 PM

在这里,我们将看到一个内接于菱形的圆的面积。菱形的对角线分别为'a'和'b'。圆的半径为h。两条对角线形成了四个相等的三角形。每个三角形都是直角三角形,因此它们的面积是-菱形的每条边都是斜边-因此,圆的面积为-例子#include<iostream>#include<cmath>usingnamespacestd;floatarea(floata,floatb){&nbsp;&nbsp;if(a<0||b<0)//ifthevaluesaren

在C编程中,找到一个圆的面积在C编程中,找到一个圆的面积Aug 25, 2023 pm 10:57 PM

圆是封闭图形。圆上的所有点到圆内一点的距离都相等。中心点称为圆心。点到圆心的距离称为半径。面积是封闭图形尺寸跨度的定量表示。圆的面积是圆的尺寸内包围的面积。计算圆面积的公式,Area=&pi;*r*r为了计算面积,我们给出了圆的半径作为输入,我们将使用公式来计算面积,算法STEP1:Takeradiusasinputfromtheuserusingstdinput.STEP2:Calculatetheareaofcircleusing,&nbsp;&nbsp;area=(

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.