zoukankan      html  css  js  c++  java
  • HDU 2105 The Center of Gravity

    http://acm.hdu.edu.cn/showproblem.php?pid=2105

    Problem Description
    Everyone know the story that how Newton discovered the Universal Gravitation. One day, Newton walked 
    leisurely, suddenly, an apple hit his head. Then Newton discovered the Universal Gravitation.From then
    on,people have sovled many problems by the the theory of the Universal Gravitation. What's more, wo also
    have known every object has its Center of Gravity.
    Now,you have been given the coordinates of three points of a triangle. Can you calculate the center 
    of gravity of the triangle?
     
    Input
    The first line is an integer n,which is the number of test cases.
    Then n lines follow. Each line has 6 numbers x1,y1,x2,y2,x3,y3,which are the coordinates of three points.
    The input is terminated by n = 0.
     
    Output
    For each case, print the coordinate, accurate up to 1 decimal places.
     
    Sample Input
    2
    1.0 2.0 3.0 4.0 5.0 2.0
    1.0 1.0 4.0 1.0 1.0 5.0
    0
     
    Sample Output
    3.0 2.7
    2.0 2.3

     代码:

    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
        int n;
        while(~scanf("%d", &n)) {
            if(n == 0) break;
            for(int i = 1; i <= n; i ++) {
                double x1, y1, x2, y2, x3, y3;
                cin>> x1 >> y1 >> x2 >> y2 >> x3 >> y3;
                double x = 0, y = 0;
                x = 1.0 * (x1 + x2 + x3) / 3;
                y = 1.0 * (y1 + y2 + y3) / 3;
                printf("%.1lf %.1lf
    ", x, y);
            }
        }
        return 0;
    }
    

      

  • 相关阅读:
    chr(9) chr(10) chr(13) chr(32)
    分割字符串
    日期提取函数EXTRACT
    数据泵在本地导出数据到远程数据库中
    CEIL与FLOOR
    GROUPING SETS与GROUP_ID
    LISTAGG
    AVG
    COUNT
    Scala 泛型类型和方法
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/9410883.html
Copyright © 2011-2022 走看看