首页 > 其他分享 >7月4日 Is This Integration

7月4日 Is This Integration

时间:2023-08-23 23:33:12浏览次数:36  
标签:sector %. double Integration pi 3f

Is This Integration

#include <iostream>
#include <cmath>
#define pi 3.141592653589793
using namespace std;

int main(){
  double a;
  while(cin >> a){
    double x, y, z;
    double triangle = a * a * sin(pi / 3.0) / 2;
    double sector = pi * a * a * (1 / 6.0);
    double sector4 = pi * a * a * 0.25;

    x = a * a  - triangle - sector;

    z = (4 * sector4 - 3 * a * a + x * 4);

    y = (a * a - 4 * x - z) / 4.0;

    printf("%.3f %.3f %.3f\n", z, y * 4, x * 4);
  }
  return 0;
}

标签:sector,%.,double,Integration,pi,3f
From: https://www.cnblogs.com/tlocdx/p/17653039.html

相关文章

  • How do I disable maven build when using Maven 2.0 integration for eclipse
    http://stackoverflow.com/questions/2865803/how-do-i-disable-maven-build-when-using-maven-2-0-integration-for-eclipseHowdoIstopthe"Maven2.0integration"pluginfromrunningmavenbuild,whilekeeping"buildautomatically"checked......
  • 指数积分方法(Exponential Integration)求解ODE/DAE问题
    1.Matrixexponentialmethod(MEXP) 解如下形式的方程, 通过指数积分方法,获得从t到t+h时间的递进关系: 写为的形式如下:  其中,  2. Krylov方法近似其中的矩阵向量积(MEVP)可以通过Krylov方法近似计算: 其中Vm是的Krylov子空间的基。若C为奇异矩阵,则无法求......
  • 从微软 Integration RunTIme学到的设计思路
    首先在云上服务添加一个runtime条目,生成一个key:里面包含云上服务地址和客户端RUNTIME的ID在云下安装runtime时,只需要输入key,则runtime会根据里面的信息连接到云上服务,并注册自己在云上即可使用该RUMTIME配置各种采集信息RUNTIME从云上服务拉取各种配置信息,再把数据上传到云......
  • Supporting Spring-WS and Spring MVC integration in a project
    [url]http://www.java-allandsundry.com/2011/06/supporting-spring-ws-and-spring-mvc.html[/url]SpringWSandSpringMVCprovidedifferentfrontcontrollerimplementationsasagatewaytothewebserviceandtheMVCfunctionalityrespectiv......
  • 为什么我们迫切需要持续集成(Continuous Integration)
    持续集成(ContinuousIntegration),也就是我们经常说的CI,是现代软件开发技术的基础。本文论述了当前软件开发过程中存在的问题,讲解了持续集成、持续集成服务器的概念,最终探讨了为什么我们需要持续集成来解决这些问题。当前软件开发过程存在的问题在没有应用持续集成之前,传统的开发模......
  • solrj integration with Spring
    ThefirstoneisEmbeddedSolrServer,soIdonotneedtostartmystandalonesolrserver,Icanrunthejunittests.Thepom.xmlareasfollow:<dependency><groupId>org.apache.solr</groupId><artifactId>solr-solrj</arti......
  • storybook插件说明: integrations与addons推荐
    官方的:https://storybook.js.org/integrations/https://github.com/storybookjs/storybook/blob/master/ADDONS_SUPPORT.md 我所推荐的的三个: yarn add -D @stor......
  • Supporting integration tests with WebApplicationFactory in .NET 6
    https://andrewlock.net/exploring-dotnet-6-part-6-supporting-integration-tests-with-webapplicationfactory-in-dotnet-6/ Thisisthesixthpostintheseries:......
  • 软件测试与检验复习5(Integration testing/System Testing)
    UnitTestingvs.IntegrationTesting 单元测试与集成测试Unittesting:TestanIndividualUnitorBasicComponentoftheSystembeforeIntegration.  单元......
  • 为 Github 创造 Integration
    现在你可以从我们的集成件目录里面找到更多工具。这个目录目前有超过15个分类—从API管理到应用监控,Github的集成件可以支持您的开发周期的每一个阶段。......